-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (90 loc) · 2.71 KB
/
index.html
File metadata and controls
93 lines (90 loc) · 2.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TIO Software Documentation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #5f5f5f;
margin: 0;
padding: 0;
}
header {
background-color: #24292e;
color: white;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
margin: 0 auto;
display: flex;
}
.left {
flex: 1;
background-color: #5f5f5f;
display: flex;
justify-content: center;
align-items: top;
}
.left img {
max-width: 100%;
height: 700px;
border-radius: 8px;
}
.right {
flex: 2;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
}
.project {
background: #a0a5b5;
margin: 10px 0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.project a {
text-decoration: none;
color: #0366d6;
font-weight: bold;
}
.project a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>TIO Software Documentation</h1>
<p>Online Documents for the Software Projects of the Thirty Meter Telescope International Observatory</p>
</header>
<main>
<div class="left">
<img src="media/ZOA_2023_7950_tio_tmt_0019.jpg" alt="Project Image">
</div>
<div class="right">
<div class="project">
<h2><a href="https://tmtsoftware.github.io/csw/" target="_blank">CSW</a></h2>
<p>Common framework and services for TIO Components.</p>
</div>
<div class="project">
<h2><a href="https://tmtsoftware.github.io/esw/" target="_blank">ESW</a></h2>
<p>Executive software and UI Gateway application.</p>
</div>
<div class="project">
<h2><a href="https://tmtsoftware.github.io/esw-ts/" target="_blank">ESW Typescript Library (esw-ts)</a></h2>
<p>CSW integration library for TIO UI Components.</p>
</div>
<div class="project">
<h2><a href="https://tmtsoftware.github.io/esw-ocs-eng-ui/" target="_blank">ESW OCS Engineering UI</a></h2>
<p>Engineering UI application for ESW Observatory Control Software.</p>
</div>
</div>
</main>
</body>
</html>