From 17b715179dd0231d7ae874a0abefe554b67df64b Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Fri, 25 Oct 2019 17:34:43 -0400 Subject: nfsw: Style sorry page. --- nfsw/static/sorry.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nfsw/static/sorry.css (limited to 'nfsw/static') diff --git a/nfsw/static/sorry.css b/nfsw/static/sorry.css new file mode 100644 index 0000000..2d956d0 --- /dev/null +++ b/nfsw/static/sorry.css @@ -0,0 +1,30 @@ +@font-face { + font-family: roboto-black; + src: url('./fonts/roboto-black.ttf'); +} + +@font-face { + font-family: roboto-regular; + src: url('./fonts/roboto-regular.ttf'); +} + +.sorry-grid { + display: grid; + grid-template-rows: 29vh 160px 29vh; + grid-template-columns: auto 300px auto; +} + +.sorry-grid-item { + grid-column-start: 2; + grid-column-end: 3; + grid-row-start: 2; + grid-row-end: 3; +} + +header h1 { + font-family: roboto-black; +} + +p { + font-family: roboto-regular; +} -- cgit v1.2.3