Happiness: 10
+Hunger: 0
+Tiredness: 5
+diff --git a/css/style.css b/css/style.css index 134028f..f1f9d32 100644 --- a/css/style.css +++ b/css/style.css @@ -1,11 +1,63 @@ /* global styles */ - +*{ + box-sizing: border-box; + +} /* element styles */ + + +body{ + margin: 0; + min-height: 100vh; + background-color: #e6e6e6 ; + font-family: Arial, Helvetica, sans-serif; + font-size: 16px; + +} +h1{ + font-size: 3.5rem; + /* margin: 0;*/ + +} /* layout */ +.container{ + border: 3px solid blue; + width: 90vw; + margin: 0 auto; +} +.button-wrapper{ + display: flex; + justify-content: center; + gap: 1rem; +} +.stats-wrapper{ +} +.game-state-wrapper{ + display: flex; + justify-content: center; +} /* headings */ +.game-title{ + text-align: center; -/* buttons */ +} +/* buttons */ +.button-wrapper button { + background-color: rgb(11, 153, 255); + color: white; + padding: 1.3rem 1.5 rem; + font-size: 1.8rem; + border: .2rem solid #134a71; + border-radius: .25 rem; +} +.button-wrapper button:active{ + background-color: #197bc2; + border: .2rem solid #0b3553; +} /* images */ +.game-graphic{ +max-height: 33vmin; +} diff --git a/index.html b/index.html index 18d09e9..33196a5 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,28 @@
-Happiness: 10
+Hunger: 0
+Tiredness: 5
+