Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffsteward committed Nov 27, 2019
0 parents commit a280b40
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 0 deletions.
24 changes: 24 additions & 0 deletions dev.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TMS Dev | Harvard Art Museums</title>
<style type="text/css">
body {
font-family: Arial;
overflow: hidden;
}
h1 {
font-size: 1000%;
}
.centered {
position: fixed;
top: 25%;
left: 25%;
}
</style>
</head>
<body>
<h1 class="centered">Dev</h1>
</body>
</html>
25 changes: 25 additions & 0 deletions production.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TMS Production | Harvard Art Museums</title>
<style type="text/css">
body {
font-family: Arial;
overflow: hidden;
}
h1 {
font-size: 1000%;
}
.centered {
position: fixed;
top: 25%;
left: 25%;
}
</style>
</head>
<body>
<!-- <h1 class="centered">Production</h1> -->
</body>
</html>

24 changes: 24 additions & 0 deletions sandbox.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TMS Sandbox | Harvard Art Museums</title>
<style type="text/css">
body {
font-family: Arial;
overflow: hidden;
}
h1 {
font-size: 1000%;
}
.centered {
position: fixed;
top: 25%;
left: 25%;
}
</style>
</head>
<body>
<h1 class="centered">Sandbox</h1>
</body>
</html>
24 changes: 24 additions & 0 deletions test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>TMS Test | Harvard Art Museums</title>
<style type="text/css">
body {
font-family: Arial;
overflow: hidden;
}
h1 {
font-size: 1000%;
}
.centered {
position: fixed;
top: 25%;
left: 25%;
}
</style>
</head>
<body>
<h1 class="centered">Test</h1>
</body>
</html>

0 comments on commit a280b40

Please sign in to comment.