Scribe.js/herokuapp/views/index.html

55 lines
3.3 KiB
HTML
Raw Normal View History

2014-12-23 05:12:03 -06:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2014-12-23 05:57:58 -06:00
<base target="_frame" />
2014-12-23 05:12:03 -06:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ScribeJS Demo</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
2014-12-24 03:22:39 -06:00
<link href='https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700' rel='stylesheet' type='text/css'>
2014-12-23 05:12:03 -06:00
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src ="js/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src ="js/index.js" type="text/javascript"></script>
</head>
<body>
2015-01-13 17:30:03 -06:00
<style>#forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial,sans-serif;text-align:center;box-sizing: content-box;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#c11;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:0){#forkongithub{position:fixed;display:block;top:0;left:0;width:200px;overflow:hidden;height:200px;z-index:9999;}#forkongithub a{width:200px;box-sizing: content-box;position:absolute;top:60px;left:-60px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);box-shadow:1px 1px 3px rgba(0,0,0,0.2);}}</style><span style="box-sizing: content-box;" id="forkongithub"><a style="box-sizing: content-box;" href="https://github.com/bluejamesbond/Scribe.js" target="_blank">Fork me on GitHub</a></span>
2014-12-23 05:12:03 -06:00
<div class = "header">
<div class = "header__logo"></div>
</div>
2014-12-25 02:13:54 -06:00
<div class = "notification">
<div class = "wrapper">
<div class = "text">Completed</div>
</div>
</div>
2014-12-23 05:12:03 -06:00
<div class = "content">
<div style="width:100%;height:100%;">
<div class = "main">
<div class = "important">
<h1>Scribe.js</h1>
<h4>Simple. Clean. Minimal NodeJS logging framework<br/>that is accessible from anywhere in the world.</h4>
</div>
<div class = "normal">
<h2>Demo</h2>
<h5>Enter some text to be printed out. JSON is supported as well. The text will be printed out by the server using a scribe-enabled console. You can then view the logs to see your content displayed.</h5>
2014-12-23 13:02:38 -06:00
<div style="width:100%;margin-top:20px;">
<input id="input-tag" style="margin-right:10px;color:#21ce99;" placeholder="Enter tag"/>
<input id="input-msg" style="margin-right:10px;width:565px" placeholder="Enter message"/>
<button id="submit" class="button" href="#">Console.log</button>
</div>
2014-12-25 02:13:54 -06:00
<a class="direct" target="_frame" href="logs">
<div></div>
<div>Access System Logs</div>
</a>
2014-12-23 05:12:03 -06:00
</div>
<div class = "normal">
<h2>Web Access</h2>
<h5>All your logs can be accessed from the web with a rich HTML interface.</h5>
2014-12-23 13:02:38 -06:00
<img alt="WebPanel screenshot" src = "img/screenshot-1.png"/>
2014-12-23 05:12:03 -06:00
</div>
</div>
</div>
</div>
</body>
</html>