Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

border boxed the form , and fixed a typo #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ app.post("/api/airtable", jsonParser, function (req, res) {
});

app.listen(port, () => {
console.log("Running Server at" + port);
console.log("Running Server at " + port);
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start":"node index.js",
"start": "node index.js",
"dev": "nodemon index.js --ext scss,html,js"
},
"repository": {
Expand Down
9 changes: 8 additions & 1 deletion public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2965,7 +2965,14 @@ a.tag:hover {
.field-label.is-large {
font-size: 1.5rem;
padding-top: 0.375em; } }

.box{
border: 7px solid #ea203c;
padding: 50px 15px;
margin: 5px 10px 10px 10px;
-webkit-box-shadow: 3px 3px 5px 6px #ccc; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: 3px 3px 5px 6px #ccc; /* Firefox 3.5 - 3.6 */
box-shadow: 3px 3px 5px 6px #ccc;
}
.field-body .field .field {
margin-bottom: 0; }

Expand Down
4 changes: 2 additions & 2 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ <h2 class="subtitle" style="font-size: 1.5rem;">
<!--Form Starts-->
<form>
<section class="section mt-2 mb-6" id="form">
<div class="container">
<div class="container box">
<div class="columns is-centered">



<div class="column is-half has-text-centered">
<h1 style="color: red; font-size: 1.5rem" class="my-2">*Important*</h1>
<h1 style="color: red; font-size: 1.5rem" class="my-2"><bold>Important</bold></h1>
<p class="subtitle is-5">
Please use the <br /><strong class="has-text-danger my-4 subtitle is-3">EXACT NAME DISPLAYED
ON MICROSOFT
Expand Down