Skip to content

Commit a3cd828

Browse files
author
Jason Weiss
committed
index page
1 parent 426641e commit a3cd828

2 files changed

Lines changed: 93 additions & 0 deletions

File tree

index.html

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>TIO Software Documentation</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
background-color: #5f5f5f;
11+
margin: 0;
12+
padding: 0;
13+
}
14+
header {
15+
background-color: #24292e;
16+
color: white;
17+
padding: 20px;
18+
text-align: center;
19+
}
20+
main {
21+
padding: 20px;
22+
margin: 0 auto;
23+
display: flex;
24+
}
25+
26+
.left {
27+
flex: 1;
28+
background-color: #5f5f5f;
29+
display: flex;
30+
justify-content: center;
31+
align-items: top;
32+
}
33+
.left img {
34+
max-width: 100%;
35+
height: 700px;
36+
border-radius: 8px;
37+
}
38+
.right {
39+
flex: 2;
40+
padding: 0px;
41+
display: flex;
42+
flex-direction: column;
43+
justify-content: center;
44+
}
45+
46+
.project {
47+
background: #a0a5b5;
48+
margin: 10px 0;
49+
padding: 20px;
50+
border-radius: 8px;
51+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
52+
}
53+
.project a {
54+
text-decoration: none;
55+
color: #0366d6;
56+
font-weight: bold;
57+
}
58+
.project a:hover {
59+
text-decoration: underline;
60+
}
61+
</style>
62+
</head>
63+
<body>
64+
<header>
65+
<h1>TIO Software Documentation</h1>
66+
<p>Online Documents for the Software Projects of the Thirty Meter Telescope International Observatory</p>
67+
</header>
68+
<main>
69+
<div class="left">
70+
<img src="media/ZOA_2023_7950_tio_tmt_0019.jpg" alt="Project Image">
71+
</div>
72+
<div class="right">
73+
<div class="project">
74+
<h2><a href="https://tmtsoftware.github.io/csw/" target="_blank">CSW</a></h2>
75+
<p>Common framework and services for TIO Components.</p>
76+
</div>
77+
<div class="project">
78+
<h2><a href="https://tmtsoftware.github.io/esw/" target="_blank">ESW</a></h2>
79+
<p>Executive software and UI Gateway application.</p>
80+
</div>
81+
<div class="project">
82+
<h2><a href="https://tmtsoftware.github.io/esw-ts/" target="_blank">ESW Typescript Library (esw-ts)</a></h2>
83+
<p>CSW integration library for TIO UI Components.</p>
84+
</div>
85+
<div class="project">
86+
<h2><a href="https://tmtsoftware.github.io/esw-ocs-eng-ui/" target="_blank">ESW OCS Engineering UI</a></h2>
87+
<p>Engineering UI application for ESW Observatory Control Software.</p>
88+
</div>
89+
</div>
90+
</main>
91+
92+
</body>
93+
</html>
4.15 MB
Loading

0 commit comments

Comments
 (0)