Start separate stylesheet for submit page
parent
2ed0046c09
commit
5a39c4983b
|
@ -7,7 +7,3 @@ a {
|
|||
color: #00B7FF;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
|
@ -1,5 +1,8 @@
|
|||
extends layout
|
||||
|
||||
block stylesheets
|
||||
link(rel='stylesheet', href='/stylesheets/submit.css')
|
||||
|
||||
block content
|
||||
h1 Submit Score
|
||||
form(action='/submit', method='POST')
|
||||
|
|
|
@ -2,6 +2,7 @@ doctype html
|
|||
html
|
||||
head
|
||||
title= title
|
||||
link(rel='stylesheet', href='/stylesheets/style.css')
|
||||
block stylesheets
|
||||
link(rel='stylesheet', href='/stylesheets/style.css')
|
||||
body
|
||||
block content
|
||||
|
|
Reference in New Issue