Browse Source

narrow the columns, remove header

master
Stephanie Gredell 3 weeks ago
parent
commit
e24b05f187
  1. 4
      index.html
  2. 4
      style.css

4
index.html

@ -10,10 +10,6 @@
</head> </head>
<body> <body>
<header class="game_header">
<img src="juice.png" class="game_header_icon">
<h1 class="game_header_title">Lemonade Stand</h1>
</header>
<div class="dashboard"> <div class="dashboard">
<section class="game_section weather_section"> <section class="game_section weather_section">

4
style.css

@ -22,7 +22,7 @@ body {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
gap: 10px; gap: 10px;
} }
@ -894,7 +894,7 @@ canvas {
font-size: 36px; font-size: 36px;
} }
.game_section > p { .game_section>p {
font-size: 22px; font-size: 22px;
} }

Loading…
Cancel
Save