Browse Source

Fix hero styling

pull/1/head
Stephanie Gredell 7 months ago
parent
commit
43cf2f0e8d
  1. 14
      static/index.html

14
static/index.html

@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The System Design Game - Interactive Browser-Based Learning</title> <title>The System Design Game - Interactive Browser-Based Learning</title>
@ -748,9 +748,15 @@
font-weight: 500; font-weight: 500;
z-index: 10; z-index: 10;
} }
@media (max-width: 400px) {
.hero {
padding-top: 120px;
}
}
</style> </style>
</head> </head>
<body> <body>
<header> <header>
<nav class="container"> <nav class="container">
<div class="logo">System Design Game</div> <div class="logo">System Design Game</div>
@ -1043,5 +1049,5 @@
}); });
}); });
</script> </script>
</body> </body>
</html> </html>

Loading…
Cancel
Save