Skip to content

Commit

Permalink
styling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sophia-pung committed Feb 6, 2024
1 parent 030cc33 commit 186ffd6
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,16 @@
import Monolith from "../resources/Monolith.png";
import { Picture } from "astro:assets";
import Trillium from "../components/trillium.astro";
import Flux from "../components/flux.astro";
import Flux from '../components/flux.astro';
---

<html>
<head>
<title>Monolith MMI</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@700;700i&display=swap");
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

p {
font-family: "IBM Plex Mono", monospace;
font-weight: 700;
font-size: 18px;
margin-top: 30px;
margin-bottom: 30px;
color: #282e43;
}
.main {
max-width: 600px;
}
Expand All @@ -29,6 +22,14 @@ import Flux from "../components/flux.astro";
flex-direction: column;
align-items: center;
}
p {
font-weight: 700;
font-size: 18px;
margin-top: 30px;
margin-bottom: 30px;
font-family: "IBM Plex Mono", monospace;
color: #282e43;
}
.header,
.content {
padding: 20px;
Expand All @@ -53,7 +54,7 @@ import Flux from "../components/flux.astro";

h2 {
font-family: "IBM Plex Mono", monospace;
font-weight: 700; /* Bold */
font-weight: 500; /* Bold */
font-size: 32px;
line-height: 40px;
color: #282e43;
Expand Down Expand Up @@ -128,11 +129,16 @@ import Flux from "../components/flux.astro";
flex-direction: column;
align-items: center;
justify-content: center;
height: 50vh;
height: 40vh;
background-color: #fdf6f4;
font-family: "IBM Plex Mono", monospace;
margin-bottom: 50px;
}
@media (max-width: 600px) {
.header {
height: 25vh;
}
}
</style>
</head>
<body>
Expand Down

0 comments on commit 186ffd6

Please sign in to comment.