Start separate stylesheet for submit page
parent
2ed0046c09
commit
5a39c4983b
|
@ -7,7 +7,3 @@ a {
|
||||||
color: #00B7FF;
|
color: #00B7FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
|
@ -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')
|
||||||
|
|
|
@ -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
|
||||||
|
|
Reference in New Issue