tweaks on the style

main
Yanick Champoux 2020-07-28 15:49:08 -04:00
parent 5dabcc7072
commit 097812f62a
2 changed files with 10 additions and 4 deletions

View File

@ -15,6 +15,7 @@
<link rel='icon' type='image/png' href='/favicon.png'> <link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='./global.css'> <link rel='stylesheet' href='./global.css'>
<link rel='stylesheet' href='./css/buttons.css'>
<link rel='stylesheet' href='./bundle.css'> <link rel='stylesheet' href='./bundle.css'>
<!-- <!--

View File

@ -1,22 +1,27 @@
<header> <header>
<h1>The Shipyard <span class="subtitle">a <a <h1>The Shipyard</h1>
href="https://shop.groundzerogames.co.uk/rules.html">Full Thrust</a> ship builder</span></h1> <h2>a <a
href="https://shop.groundzerogames.co.uk/rules.html">Full Thrust</a> ship builder</h2>
</header> </header>
<style> <style>
header { header {
display: flex;
align-items: baseline;
width: var(--main-width); width: var(--main-width);
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
h1 { h1, h2 {
font-family: Faktos; font-family: Faktos;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
} }
h1 .subtitle { h2 {
text-align: right;
flex: 1;
padding-left: 2em; padding-left: 2em;
font-size: var(--font-scale-12); font-size: var(--font-scale-12);
} }