little webpage for the editor

This commit is contained in:
Felix Angell 2018-04-29 19:57:10 +01:00
parent 5eeb782e3d
commit ad8a51a905
10 changed files with 85 additions and 1 deletions

BIN
images/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
images/icon16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
images/icon256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
images/icon32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
images/icon512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
images/icon64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

BIN
images/icon96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
images/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

View File

@ -1,6 +1,30 @@
<!DOCTYPE html>
<html>
<h1>Hello, world!</h1>
<head>
<title>phi</title>
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<header>
<img class="logo" src="images/icon256.png">
<h1 class="">phi code editor</h1>
<div class="section">
<p>
Phi is a code editor whose main goals are simplicity,
speed, and beauty. The editor is still a work in progress.
</p>
</div>
<div class="section">
<img alt="screenshot of the editor" class="fit" src="images/screenshot.png">
</div>
</header>
</div>
</body>
</html>

60
main.css Normal file
View File

@ -0,0 +1,60 @@
* {
margin: 0;
border: 0;
}
body {
font-family: 'Inconsolata', monospace;
color: #f2f4f6;
background: #fff;
font-size: 14pt;
line-height: 1.6em;
color: #002649;
}
header {
display: block;
width: 100%;
margin-bottom: 40px;
}
header nav {
display: inline-block;
width: 100%;
}
header nav ul li {
display: block;
float: left;
margin: 15px;
}
a {
color: #f8f273;;
}
.section {
display: block;
margin: 20px 0 20px 0;
}
.logo {
display: block;
margin: 40px auto;
width: 10%;
}
.text-center {
text-align: center;
}
img.fit {
display: block;
max-width: 100%;
}
.wrapper {
display: block;
width: 800px;
margin: 0 auto;
}