Skip to content

Commit f992f2e

Browse files
committed
changed font to Inter. baby steps
1 parent 3deb227 commit f992f2e

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

app/components/Applications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const Applications = () => {
8181
[theme.breakpoints.up('lg')]: {
8282
fontSize: '2.75rem',
8383
// MAIN PAGE SQUARE BUTTON FONTS
84-
fontFamily: 'Montserrat'
84+
fontFamily: 'Inter'
8585
},
8686
},
8787
}));

app/components/Copyright.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface CopyrightProps {}
88
const Copyright = () => {
99
const useStyles = makeStyles(theme => ({
1010
copyright: {
11-
fontFamily: 'Montserrat',
11+
fontFamily: 'Inter',
1212
position: 'fixed',
1313
}
1414
}))

app/components/Occupied.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ const Occupied: React.FC = () => {
3737
// APPLICATION HEADER
3838
applicationHeader: {
3939
fontWeight: 700,
40-
fontFamily: 'Montserrat',
40+
fontFamily: 'Inter',
4141
color: '#ffffff',
4242
padding: theme.spacing(8, 0, 6),
4343
backgroundColor: '#4fa3f1',
4444
boxShadow: '2px 2px 2px 2px rgba(0,0,0,0.5)',
4545
},
4646
subTitle: {
47-
fontFamily: 'Montserrat',
47+
fontFamily: 'Inter',
4848
}
4949
}));
5050

app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
77
<title>CHRONOS</title>
88
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/>
9-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Peta&display=swap" />
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Lexend+Peta&display=swap" />
1010
<script src="https://cdn.plot.ly/plotly-latest.min.js" charset="utf-8"></script>
1111
</head>
1212
<body>

app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { createMuiTheme, ThemeProvider } from '@material-ui/core';
77
const theme = createMuiTheme({
88
typography: {
99
// Graph font when you shrink window
10-
fontFamily: ['Montserrat', 'sans-serif'].join(','),
10+
fontFamily: ['Inter', 'sans-serif'].join(','),
1111
},
1212
});
1313

app/stylesheets/GraphsContainer.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@
4343
@media screen and (min-width: 601px) and (max-width: 980px) {
4444
.graphsGrid {
4545
grid-template-columns: repeat(1, 1fr);
46-
font-family: 'Montserrat', sans-serif;
46+
font-family: 'Inter', sans-serif;
4747
}
4848
}
4949

5050
/* Normal */
5151
@media screen and (min-width: 1000px) and (max-width: 1500px) {
5252
.graphsGrid {
5353
grid-template-columns: repeat(2, 1fr);
54-
font-family: 'Montserrat', sans-serif;
54+
font-family: 'Inter', sans-serif;
5555
}
5656
}
5757

5858
/* Lg Screen */
5959
@media screen and (min-width: 1600px) {
6060
.graphsGrid {
6161
grid-template-columns: repeat(3, 1fr);
62-
font-family: 'Montserrat', sans-serif;
62+
font-family: 'Inter', sans-serif;
6363
}
6464
}

app/stylesheets/Splash.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
font-size: 9vw;
4444
letter-spacing: 100px;
4545
margin-right: -100px;
46-
/* font-family: 'Montserrat', sans-serif; */
46+
/* font-family: 'Inter', sans-serif; */
4747
font-family: 'Lexend Peta', sans-serif;
4848
/* font-weight: lighter; */
4949
}

app/stylesheets/index.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaijaan&display=swap');
2-
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Lexend+Peta&family=Nunito+Sans:wght@300;400;600&family=Quicksand:wght@300&display=swap');
2+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Inter:wght@100&family=Lexend+Peta&family=Nunito+Sans:wght@300;400;600&family=Quicksand:wght@300&display=swap');
33
@import './constants.scss';
44

55
* {
@@ -15,7 +15,7 @@
1515
body {
1616
background-color: #f4f4f4;
1717
font-size: 16px;
18-
font-family: 'Montserrat';
18+
font-family: 'Inter';
1919
font-weight: 300;
2020
overflow-x: hidden;
2121
}

0 commit comments

Comments
 (0)