here again

This commit is contained in:
Oliver Fay 2020-02-22 19:45:05 -05:00
parent d48c2f4e55
commit 4eb11373a9
2 changed files with 38 additions and 3 deletions

View file

@ -2,7 +2,6 @@ const express = require('express')
const app = express()
const port = 3000
app.use(express.static('client'));
app.get('/menu', function (req, res) {
res.sendFile('mainMenu.html', { root: '../client/html' });
});

View file

@ -1,10 +1,46 @@
<html>
<head><title> Create New Block </title></head>
<head>
<title> Create New Block </title>
<style>
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
p{
color: white;
text-align: center;
font-family: Brush Script MT;
font-size: 35px;
}
body{
background-color: rgb(50, 255, 9);
}
/*h1{
color: white;
text-align: center;
font-family: serif;
font-size: 30px;
}*/
.text-block {
position: center;
bottom: 20px;
right: 20px;
background-color: black;
color: white;
padding-left: 55px;
padding-right: 20px;
</style>
</head>
<body>
<link href="client/css/createNewBlockCSS.css" rel = "stylesheet">
<!--<link href="/css/createNewBlockCSS.css" rel = "stylesheet">-->
<script src=""></script>
<script src=""></script>