diff --git a/index.html b/index.html index 1b66f45..1660c37 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - + {{heading}} diff --git a/styles/default.css b/styles/default.css new file mode 100644 index 0000000..ac8035b --- /dev/null +++ b/styles/default.css @@ -0,0 +1,40 @@ +html, +body, +.rootContainer +{ + font-family: Arial, Helvetica, sans-serif; + + margin: 0; /* Override the default page border */ + padding: 0; + + color: #000; + background-color: #fff; +} + +.centreContainer +{ + width: 800px; + min-height: 100vh; +} + +.headerContainer +{ + line-height: 100px; + + width: 100%; + height: 100px; + + vertical-align: middle; +} + +.title +{ + font-size: 40pt; + + height: 100%; +} + +.tagline +{ + height: 50px; +}