Skip to content

Commit 60bdcde

Browse files
updated file paths
1 parent 1a90624 commit 60bdcde

10 files changed

Lines changed: 32 additions & 20 deletions

_resources/python/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Python Syntax Basics
33
layout: single
44
sidebar:
55
nav: "python_sidebar"
6-
permalink: python/basics
6+
permalink: python/basics/
77
toc: true
88
toc_sticky: true
99
---

_resources/python/choosing-an-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Choosing an Editor
33
layout: single
44
sidebar:
55
nav: "python_sidebar"
6-
permalink: python/choosing-an-editor
6+
permalink: python/choosing-an-editor/
77
toc: true
88
toc_sticky: true
99
---

_resources/python/data-cleaning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Data Cleaning in Python
33
layout: single
44
toc: true
55
toc_sticky: true
6-
permalink: python/data-cleaning
6+
permalink: python/data-cleaning/
77
sidebar:
88
nav: "python_sidebar"
99
---

_resources/python/data-viz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Data Visualization in Python
44
layout: single
55
toc: true
66
toc_sticky: true
7-
permalink: python/data-visualization
7+
permalink: python/data-visualization/
88
sidebar:
99
nav: "python_sidebar"
1010
---

_resources/python/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ title: Databases with Python
22
layout: single
33
toc: true
44
toc_sticky: true
5-
permalink: python/data-visualization
5+
permalink: python/data-visualization/
66
sidebar:
77
nav: "python_sidebar"
88
---

_resources/python/geospatial_data_analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Geospatial Data Analysis in Python
33
layout: single
44
toc: true
55
toc_sticky: true
6-
permalink: python/geospatial_data_analysis
6+
permalink: python/geospatial_data_analysis/
77
sidebar:
88
nav: "python_sidebar"
99
---

_resources/python/geospatial_data_analysis_intermediate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Intermediate Geospatial Analysis in Python
33
layout: single
44
toc: true
55
toc_sticky: true
6-
permalink: python/geospatial_data_analysis_intermediate
6+
permalink: python/geospatial_data_analysis_intermediate/
77
sidebar:
88
nav: "python_sidebar"
99
---

_resources/python/geospatial_machine_learning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Geospatial Machine Learning in Python
33
layout: single
4-
permalink: python/geospatial_machine_learning
4+
permalink: python/geospatial_machine_learning/
55
toc: true
66
toc_sticky: true
77
sidebar:

_resources/python/installing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Installing Python
33
layout: single
44
sidebar:
55
nav: "python_sidebar"
6-
permalink: python/installing
6+
permalink: python/installing/
77
toc: true
88
toc_sticky: true
99
---

_sass/_custom.scss

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22
/* Define the Poppins Font Family */
33
@font-face {
44
font-family: 'Poppins';
5-
src: url('/assets/font/Poppins-Regular.ttf') format('truetype');
5+
src: url('../font/Poppins-Regular.ttf') format('truetype');
66
font-weight: 400;
77
font-style: normal;
88
}
99

1010
@font-face {
1111
font-family: 'Poppins';
12-
src: url('/assets/font/Poppins-Italic.ttf') format('truetype');
12+
src: url('../font/Poppins-Italic.ttf') format('truetype');
1313
font-weight: 400;
1414
font-style: italic;
1515
}
1616

1717
@font-face {
1818
font-family: 'Poppins';
19-
src: url('/assets/font/Poppins-Medium.ttf') format('truetype');
19+
src: url('../font/Poppins-Medium.ttf') format('truetype');
2020
font-weight: 500;
2121
font-style: normal;
2222
}
2323

2424
@font-face {
2525
font-family: 'Poppins';
26-
src: url('/assets/font/Poppins-SemiBold.ttf') format('truetype');
26+
src: url('../font/Poppins-SemiBold.ttf') format('truetype');
2727
font-weight: 600;
2828
font-style: normal;
2929
}
3030

3131
@font-face {
3232
font-family: 'Poppins';
33-
src: url('/assets/font/Poppins-Bold.ttf') format('truetype');
33+
src: url('../font/Poppins-Bold.ttf') format('truetype');
3434
font-weight: 700;
3535
font-style: normal;
3636
}
@@ -67,6 +67,20 @@ h1, h2, h3, h4, h5, h6,
6767

6868
/* Mobile Size (Adjusts for screens smaller than 600px) */
6969
@media (max-width: 600px) {
70+
.site-header {
71+
.wrapper {
72+
display: flex;
73+
flex-direction: column;
74+
align-items: center;
75+
}
76+
}
77+
78+
.site-title {
79+
float: none; /* Removes the default left float */
80+
margin-right: 0;
81+
text-align: center;
82+
font-size: smaller;
83+
}
7084
.site-logo img {
7185
max-height: 5rem;
7286
min-width: 240px;
@@ -76,17 +90,15 @@ h1, h2, h3, h4, h5, h6,
7690
flex-direction: column; /* Stacks items vertically */
7791
align-items: center; /* Centers them horizontally */
7892
text-align: center;
93+
7994
}
8095

8196
.site-logo {
82-
margin-right: 0; /* Removes the side spacing used in desktop view */
83-
margin-bottom: 0.5rem; /* Adds space between logo and title */
97+
display: block;
98+
margin: 0 auto 10px auto; /* Centers the logo and adds space below */
8499
}
85100

86-
.site-title {
87-
margin-left: 0;
88-
font-size: 1.2rem; /* Optional: shrinks title slightly for mobile */
89-
}
101+
90102
}
91103

92104
/* Offsets the anchor scroll so the header doesn't cover the title */

0 commit comments

Comments
 (0)