Add some styles.
This commit is contained in:
parent
a132d2e5a0
commit
854295c0a6
1 changed files with 39 additions and 7 deletions
|
@ -1,7 +1,44 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Atom Shell</title>
|
<title>Atom Shell</title>
|
||||||
<style></style>
|
<style>
|
||||||
|
body {
|
||||||
|
color: #555;
|
||||||
|
font-family: 'Open Sans',Helvetica,Arial,sans-serif;
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: #2b6cc2;
|
||||||
|
font-family: "Crimson Text",Georgia,serif;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.1;
|
||||||
|
letter-spacing: -0.015em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #2b6cc2;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
font-family: "Menlo","Lucida Console",monospace;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 19px;
|
||||||
|
overflow: auto;
|
||||||
|
padding: 6px 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -13,12 +50,7 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1>Welcome to Atom Shell!</h1>
|
<h2>Welcome to Atom Shell</h2>
|
||||||
|
|
||||||
<p>
|
|
||||||
Atom Shell is a cross-platform desktop application shell that enables you to
|
|
||||||
build native like applications with node.js and web page engine of Chromium.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To run your app with atom-shell, execute the following command under your
|
To run your app with atom-shell, execute the following command under your
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue