Start separate stylesheet for submit page

main
sudoer777 2021-10-04 11:30:35 -06:00
parent 2ed0046c09
commit 5a39c4983b
4 changed files with 9 additions and 5 deletions

View File

@ -7,7 +7,3 @@ a {
color: #00B7FF; color: #00B7FF;
} }
form {
display: flex;
flex-direction: column;
}

View File

@ -0,0 +1,4 @@
form {
display: flex;
flex-direction: column;
}

View File

@ -1,5 +1,8 @@
extends layout extends layout
block stylesheets
link(rel='stylesheet', href='/stylesheets/submit.css')
block content block content
h1 Submit Score h1 Submit Score
form(action='/submit', method='POST') form(action='/submit', method='POST')

View File

@ -2,6 +2,7 @@ doctype html
html html
head head
title= title title= title
link(rel='stylesheet', href='/stylesheets/style.css') block stylesheets
link(rel='stylesheet', href='/stylesheets/style.css')
body body
block content block content