index.html 1.07 KB
Newer Older
1 2 3 4
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
5
  <title>RESTful API demo</title>
6 7
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <style type="text/css">
8
    * { outline: none; }
9
    body {
10 11 12
      background-color: #789; margin: 0;
      padding: 0; font: 16px/1.4 Helvetica, Arial, sans-serif;
      font: 16px/1.4 Helvetica, Arial, sans-serif;
13 14 15 16 17 18
    }
    div.content {
      width: 800px; margin: 2em auto; padding: 20px 50px;
      background-color: #fff; border-radius: 1em;
    }
    label { display: inline-block; min-width: 7em; }
19
    input { border: 1px solid #ccc; padding: 0.2em; }
20 21 22
    a:link, a:visited { color: #69c; text-decoration: none; }
    @media (max-width: 700px) {
      body { background-color: #fff; }
23
      div.content { width: auto; margin: 0 auto; padding: 1em; }
24 25 26
    }
</style>

27 28 29 30 31 32
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script language="javascript" type="text/javascript">
  jQuery(function() {
  });
</script>
</head>
33 34
<body>
  <div class="content">
35 36
    <h1>API server</h1>
  </div>
37
</body>
38
</html>