Skip to content

Commit

Permalink
Move fonts in house
Browse files Browse the repository at this point in the history
  • Loading branch information
spudooli committed Jun 20, 2022
1 parent e6c3f60 commit 328708e
Show file tree
Hide file tree
Showing 15 changed files with 57 additions and 5 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
55 changes: 54 additions & 1 deletion spudoolicom/static/style.css
@@ -1,4 +1,57 @@

/* raleway-300 - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 300;
src: local(''),
url('/static/fonts/raleway-v27-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* raleway-regular - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: local(''),
url('/static/fonts/raleway-v27-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* raleway-500 - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 500;
src: local(''),
url('/static/fonts/raleway-v27-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* raleway-600 - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 600;
src: local(''),
url('/static/fonts/raleway-v27-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* raleway-700 - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 700;
src: local(''),
url('/static/fonts/raleway-v27-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* raleway-800 - latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 800;
src: local(''),
url('/static/fonts/raleway-v27-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/static/fonts/raleway-v27-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
font-family: 'Raleway', sans-serif;
Expand Down
5 changes: 2 additions & 3 deletions spudoolicom/templates/adminbase.html
Expand Up @@ -13,20 +13,19 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for spudooli.com" href="/rss" />

<title>{% block title %}{% endblock %} - Spudooli</title>

<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,800,500,600,300,700' rel='stylesheet' type='text/css'>
<!-- <link href='https://fonts.googleapis.com/css?family=Raleway:400,800,500,600,300,700' rel='stylesheet' type='text/css'> -->
<!-- ionicons Fonts for icons -->
<link href="{{ url_for('static', filename='ionicons.min.css') }}" rel="stylesheet">
<!-- bootstrap -->
<link href="{{ url_for('static', filename='bootstrap.css') }}" rel="stylesheet">
<!-- Styles CSS-->
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
<!-- Animate CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link href="{{ url_for('static', filename='animate-min.css') }}" rel="stylesheet">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">

</head>
Expand Down
2 changes: 1 addition & 1 deletion spudoolicom/templates/base.html
Expand Up @@ -34,7 +34,7 @@

<title>{% block title %}{% endblock %} - Spudooli</title>

<link href='https://fonts.googleapis.com/css?family=Raleway:400,800,500,600,300,700' rel='stylesheet' type='text/css'>
<!-- <link href='https://fonts.googleapis.com/css?family=Raleway:400,800,500,600,300,700' rel='stylesheet' type='text/css'> -->
<link href="{{ url_for('static', filename='ionicons.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='bootstrap-min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='animate-min.css') }}" rel="stylesheet">
Expand Down

0 comments on commit 328708e

Please sign in to comment.