Skip to content

Commit

Permalink
feat: font and styles
Browse files Browse the repository at this point in the history
  • Loading branch information
vaclavGabriel committed Mar 18, 2024
1 parent 2029839 commit 73add0d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>

<link rel="stylesheet" href="styles.css" />
</head>

Expand Down
17 changes: 13 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
body {
padding-top: 60px;
font-family: "Montserrat";
padding-top: 60px;
}

.container {
margin-top: 50px;
}

@media (width > 991px) {
.navbar {
padding-right: 40px;
padding-left: 40px;
}
.container {
margin-top: 50px;
}
}

0 comments on commit 73add0d

Please sign in to comment.