mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
54 lines
795 B
HTML
54 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Rojo</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font: inherit;
|
|
}
|
|
|
|
html {
|
|
font-family: sans-serif;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.main {
|
|
padding: 1rem;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
max-width: 60rem;
|
|
background-color: #efefef;
|
|
border: 1px solid #666;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.docs {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="main">
|
|
<h1 class="title">Rojo Live Sync is up and running!</h1>
|
|
<a class="docs" href="https://lpghatguy.github.io/rojo">Rojo Documentation</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |