Skip to content

Commit cdd793c

Browse files
authored
Merge pull request #1 from emamut/dev
fix fonts and layout
2 parents 0d08c10 + 30dc44a commit cdd793c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<link rel="preconnect" href="https://fonts.googleapis.com" />
2525
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
2626
<link
27-
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
27+
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Source+Sans+Pro:wght@400;700&display=swap"
2828
rel="stylesheet"
2929
/>
3030

@@ -40,13 +40,14 @@
4040
<div class="container">
4141
<header class="row bg-primary text-white py-3">
4242
<div class="col text-center">
43-
<h1>Generate GeoJSON from cordinates</h1>
43+
<h1 class="font-source-sans">Generate GeoJSON from cordinates</h1>
4444
</div>
4545
</header>
4646
<div class="row mt-4">
4747
<div class="col"><div id="map"></div></div>
4848
<div class="col">
49-
<textarea id="result" class="form-control" rows="16"></textarea>
49+
<h5 class="font-source-sans">Result</h5>
50+
<textarea id="result" class="form-control" rows="15"></textarea>
5051
</div>
5152
</div>
5253
</div>

styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
body {
22
font-family: 'Montserrat', sans-serif;
33
}
4+
5+
.font-source-sans {
6+
font-family: 'Source Sans Pro', sans-serif;
7+
}

0 commit comments

Comments
 (0)