-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmHelp.aspx
253 lines (227 loc) · 4.94 KB
/
frmHelp.aspx
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="frmHelp.aspx.cs" Inherits="IEF_Visualization.frmHelp" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Help</title>
<style type="text/css">
html, #page {
padding-left: 7%;
}
body {
color: #535353;
font: 12px/2em sans-serif;
margin: 0;
padding: 0;
width: 86%;
}
h1, h2, h3, h4, h5, h6 {
color: darkgreen;
}
#page {
background: #fff none repeat scroll 0 0;
}
#header, #footer, #top-nav, #content, #content #contentbar, #content #sidebar {
margin: 0;
padding: 0;
}
#logo {
float: left;
padding: 0;
width: auto;
}
#logo h1 a, h1 a:hover {
color: darkgreen;
text-decoration: none;
}
#logo h1 span {
color: lightgreen;
}
#header {
background: #fff none repeat scroll 0 0;
}
#header-inner {
margin: 0 auto;
padding: 0;
}
.feature {
/*background: green none repeat scroll 0 0;*/
padding-top: 30px;
padding-bottom: 25px;
}
.feature-inner {
margin: auto;
}
.feature-inner h1 {
color: green;
font-size: 22px;
}
#top-nav {
float: right;
height: 37px;
margin: 0 auto;
padding: 0;
}
#top-nav ul {
float: left;
height: 37px;
list-style: outside none none;
padding: 0;
}
#top-nav ul li {
float: left;
margin: 0;
padding: 0 0 0 8px;
}
#top-nav ul li a {
color: green;
display: block;
margin: 0;
padding: 8px 20px;
text-decoration: none;
}
#top-nav ul li.active a, #top-nav ul li a:hover {
color: lightgreen;
}
#content-inner {
background: #fff none repeat scroll 0 0;
margin: 0 auto;
padding: 25px 0;
}
#content #contentbar {
float: left;
margin: 0;
padding: 0;
width: 55%;
}
#content #contentbar .article {
margin: 0 0 24px;
}
#content #contentbar .article img {
max-width:100%;
max-height:100%;
margin:auto;
display:block;
}
#content #sidebar-full {
/*border: 2px solid;*/
float: left;
padding: 0;
width: 100%;
}
#content #sidebar-full .widget-article {
line-height: 1.4em;
margin: 0 0 70px;
font-size:14px;
}
#content #sidebar-full .widget-article h3 a {
text-decoration: none;
font-size:16px;
}
#content #sidebar-full .widget-login {
border: 1px solid;
border-radius: 2px;
font-size: 14px;
line-height: 1.4em;
margin: 3px 4px 12px;
padding-left: 5px;
width: 80%;
}
#content #sidebar-full .widget-login h3 a {
text-decoration: none;
font-size:16px;
}
.table-login{
width:100%;
}
.table-login td {
font-size: 14px;
padding: 5px;
}
#footer {
background: #fff none repeat scroll 0 0;
}
#footer-inner {
margin: auto;
padding: 12px;
text-align: center;
width: 922px;
}
#footer a {
color: green;
text-decoration: none;
}
.clr {
clear: both;
font-size: 0;
line-height: 0;
margin: 0;
padding: 0;
width: 100%;
}
.button-login {
background-color: green;
border: medium none;
border-radius: 5px;
color: white;
display: inline-block;
font-size: 14px;
padding: 4px 17px;
text-align: center;
text-decoration: none;
}
.textbox {
background: white none repeat scroll 0 0;
border: 1px solid #ffa853;
border-radius: 2px;
color: #666;
font-size: 14px;
height: 23px;
outline: medium none;
width: 140px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="page">
<header id="header">
<div id="header-inner">
<div id="logo">
<h1><a href="#">Circular<span>Sankey</span></a></h1>
</div>
<div id="top-nav">
<ul>
<li><a href="frmHome.aspx">Login</a></li>
<li><a href="frmAboutUs.aspx">About Us!</a></li>
<li><a href="frmDemo.aspx">Demo</a></li>
<li><a href="frmHelp.aspx">Help</a></li>
</ul>
</div>
<div class="clr"></div>
</div>
</header>
<div class="feature">
<div class="feature-inner">
<h1>Welcome to the industrial ecology group in Freiburg!</h1>
</div>
</div>
<div id="content">
<div id="content-inner">
<nav id="sidebar-full">
<div class="widget-article">
<h3>Help</h3>
</div>
</nav>
<div class="clr"></div>
</div>
</div>
<footer id="footer">
<div id="footer-inner">
<p>© Copyright <a href="frmAboutUs.aspx">Stefan Pauliuk</a> | <a href="#">Terms of Use</a> | <a href="#">Privacy Policy</a></p>
<div class="clr"></div>
</div>
</footer>
</div>
</form>
</body>
</html>