jekyll-theme-dracula 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +104 -0
  4. data/_layouts/default.html +77 -0
  5. data/_layouts/listings.html +99 -0
  6. data/_sass/colorspaces.scss +85 -0
  7. data/_sass/fonts.scss +55 -0
  8. data/_sass/jekyll-theme-dracula.scss +383 -0
  9. data/_sass/mixins.scss +14 -0
  10. data/_sass/normalize.scss +492 -0
  11. data/_sass/rouge-dracula.scss +81 -0
  12. data/_sass/variables.scss +20 -0
  13. data/assets/css/ie.scss +3 -0
  14. data/assets/css/style.scss +4 -0
  15. data/assets/fonts/noto-serif-v6-latin-700.eot +0 -0
  16. data/assets/fonts/noto-serif-v6-latin-700.svg +1 -0
  17. data/assets/fonts/noto-serif-v6-latin-700.ttf +0 -0
  18. data/assets/fonts/noto-serif-v6-latin-700.woff +0 -0
  19. data/assets/fonts/noto-serif-v6-latin-700.woff2 +0 -0
  20. data/assets/fonts/source-sans-pro-v11-latin-300.eot +0 -0
  21. data/assets/fonts/source-sans-pro-v11-latin-300.svg +1 -0
  22. data/assets/fonts/source-sans-pro-v11-latin-300.ttf +0 -0
  23. data/assets/fonts/source-sans-pro-v11-latin-300.woff +0 -0
  24. data/assets/fonts/source-sans-pro-v11-latin-300.woff2 +0 -0
  25. data/assets/fonts/source-sans-pro-v11-latin-600.eot +0 -0
  26. data/assets/fonts/source-sans-pro-v11-latin-600.svg +1 -0
  27. data/assets/fonts/source-sans-pro-v11-latin-600.ttf +0 -0
  28. data/assets/fonts/source-sans-pro-v11-latin-600.woff +0 -0
  29. data/assets/fonts/source-sans-pro-v11-latin-600.woff2 +0 -0
  30. data/assets/fonts/source-sans-pro-v11-latin-regular.eot +0 -0
  31. data/assets/fonts/source-sans-pro-v11-latin-regular.svg +1 -0
  32. data/assets/fonts/source-sans-pro-v11-latin-regular.ttf +0 -0
  33. data/assets/fonts/source-sans-pro-v11-latin-regular.woff +0 -0
  34. data/assets/fonts/source-sans-pro-v11-latin-regular.woff2 +0 -0
  35. data/assets/images/bullet.png +0 -0
  36. data/assets/images/candies.png +0 -0
  37. data/assets/images/hr.gif +0 -0
  38. data/assets/js/respond.js +779 -0
  39. metadata +156 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3562a4bedee7caf9f182bdbdf03cc5a0925677c8caa97ddb3674ec1c6d3402b5
4
+ data.tar.gz: bea6e8c663f1c1055d60fd55881e2a3b7612e4f3537558c6b98d79a0f8854d83
5
+ SHA512:
6
+ metadata.gz: 874c950fa5a947ffe39be56e28123da0e1df5e11ecb1a415ffcf4c170695af6aa4f0573fbfffcf1c11cc159703fc4784e14fd70ae8c15cdf9c232ddee10b082a
7
+ data.tar.gz: 6ff601875110f5fafaa269f9199a525a36c5943c04edcc0de98c8106da6769df7c932f971e969bcac6f66f7ff21746c17d461835270560f1e4aebaab5df129e3
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Dracula Theme
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,104 @@
1
+ # Dracula for [GitHub Pages](https://pages.github.com/)
2
+
3
+ [![Build Status](https://travis-ci.org/dracula/gh-pages.svg?branch=master)](https://travis-ci.org/dracula/gh-pages)
4
+
5
+ > A dark theme for [GitHub Pages](https://pages.github.com/), full preview at [preview the theme to see what it looks like](http://dracula.github.io/gh-pages/).
6
+
7
+ ![Screenshot](./screenshot.png)
8
+
9
+ ## Install
10
+
11
+ All instructions can be found at [draculatheme.com/github-pages](https://draculatheme.com/github-pages).
12
+
13
+ ## Customizing
14
+
15
+ #### Configuration variables
16
+
17
+ Dracula will respect the following variables, if set in your site's `_config.yml`:
18
+
19
+ ```yml
20
+ title: [The title of your site]
21
+ description: [A short description of your site's purpose]
22
+ ```
23
+
24
+ Additionally, you may choose to set the following optional variables:
25
+
26
+ ```yml
27
+ show_downloads: ["true" or "false" to indicate whether to provide a download URL]
28
+ google_analytics: [Your Google Analytics tracking ID]
29
+ show_header: ["true" or "false" to indicate whether to show the top header]
30
+ ```
31
+
32
+ There are also currently the following optional page variables:
33
+ ```yml
34
+ icon: [path to file including extension]
35
+ colorspace: [primary page color cyan/green/orange/pink/purple/red/yellow]
36
+ ```
37
+
38
+ #### Stylesheet
39
+
40
+ If you'd like to add your own custom styles:
41
+
42
+ 1. Create a file called `/assets/css/style.scss` in your site
43
+ 2. Add the following content to the top of the file, exactly as shown:
44
+ ```scss
45
+ ---
46
+ ---
47
+
48
+ @import "{{ site.theme }}";
49
+ ```
50
+ 3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line
51
+
52
+ *Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.*
53
+
54
+ #### Layouts
55
+
56
+ If you'd like to change the theme's HTML layout:
57
+
58
+ 1. [Copy the original template](https://github.com/dracula/gh-pages/blob/master/_layouts/default.html) from the theme's repository<br />(*Pro-tip: click "raw" to make copying easier*)
59
+ 2. Create a file called `/_layouts/default.html` in your site
60
+ 3. Paste the default layout content copied in the first step
61
+ 4. Customize the layout as you'd like
62
+
63
+ #### Overriding GitHub-generated URLs
64
+
65
+ Templates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:
66
+
67
+ 1. Look at [the template source](https://github.com/dracula/gh-pages/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`.
68
+ 2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following:
69
+ ```yml
70
+ github:
71
+ zip_url: http://example.com/download.zip
72
+ another_url: another value
73
+ ```
74
+ 3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.
75
+
76
+ *Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`.*
77
+
78
+ For more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).
79
+
80
+ #### Previewing the theme locally
81
+
82
+ If you'd like to preview the theme locally (for example, in the process of proposing a change):
83
+
84
+ 1. Clone down the theme's repository (`git clone https://github.com/dracula/gh-pages`)
85
+ 2. `cd` into the theme's directory
86
+ 3. Run `script/bootstrap` to install the necessary dependencies
87
+ 4. Run `bundle exec jekyll serve` to start the preview server
88
+ 5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme
89
+
90
+ #### Running tests
91
+
92
+ The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` one before the test script will work.
93
+
94
+ ## Team
95
+
96
+ This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/ghpages/graphs/contributors).
97
+
98
+ [![backlands](https://avatars1.githubusercontent.com/u/12586299?v=3&s=70)](https://github.com/backlands) |
99
+ --- |
100
+ [backlands](https://github.com/backlands) |
101
+
102
+ ## License
103
+
104
+ [MIT License](./LICENSE)
@@ -0,0 +1,77 @@
1
+ <!doctype html>
2
+ <html lang="{{ site.lang | default: "en-US" }}">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="chrome=1">
6
+
7
+ {% seo %}
8
+ <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
10
+ <script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
11
+ <!--[if lt IE 9]>
12
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13
+ <![endif]-->
14
+ <!--[if lt IE 8]>
15
+ <link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
16
+ <![endif]-->
17
+ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
18
+ </head>
19
+
20
+ <body class="{{ page.colorspace }}">
21
+ {% if site.show_header %}
22
+ <div id="header">
23
+ <nav>
24
+ {% if site.github.repository_url %}
25
+ <li class="fork"><a href="{{ site.github.repository_url }}">View On GitHub</a></li>
26
+ {% endif %}
27
+
28
+ {% if site.show_downloads %}
29
+ {% if site.github.zip_url %}
30
+ <li class="downloads"><a href="{{ site.github.zip_url }}">ZIP</a></li>
31
+ {% endif %}
32
+
33
+ {% if site.github.tar_url %}
34
+ <li class="downloads"><a href="{{ site.github.tar_url }}">TAR</a></li>
35
+ {% endif %}
36
+
37
+ <li class="title">DOWNLOADS</li>
38
+ {% endif %}
39
+ </nav>
40
+ </div><!-- end header -->
41
+ {% endif %}
42
+
43
+ <div class="wrapper">
44
+ {% if site.show_header %}<section>
45
+ {% else %}<section class="no-header">{% endif %}
46
+ <div id="title">
47
+ {% if page.icon %}
48
+ <img src="{{ page.icon | relative_url }}" />
49
+ {% endif %}
50
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
51
+ <p>{{ site.description | default: site.github.project_tagline }}</p>
52
+ <hr>
53
+ </div>
54
+
55
+ {{ content }}
56
+
57
+ <div id="footer">
58
+ <hr />
59
+ <span class="credits left">Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></span>
60
+ <span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="https://draculatheme.com/">Dracula</a></span>
61
+ </div>
62
+ </section>
63
+
64
+ </div>
65
+
66
+ {% if site.google_analytics %}
67
+ <script type="text/javascript">
68
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
69
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
70
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
71
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
72
+ ga('create', '{{ site.google_analytics }}', 'auto');
73
+ ga('send', 'pageview');
74
+ </script>
75
+ {% endif %}
76
+ </body>
77
+ </html>
@@ -0,0 +1,99 @@
1
+ <!doctype html>
2
+ <html lang="{{ site.lang | default: "en-US" }}">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="chrome=1">
6
+
7
+ {% seo %}
8
+ <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
10
+ <script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
11
+ <!--[if lt IE 9]>
12
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13
+ <![endif]-->
14
+ <!--[if lt IE 8]>
15
+ <link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
16
+ <![endif]-->
17
+ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
18
+ </head>
19
+
20
+ <body class="{{ page.colorspace }}">
21
+ {% if site.show_header %}
22
+ <div id="header">
23
+ <nav>
24
+ {% if site.github.repository_url %}
25
+ <li class="fork"><a href="{{ site.github.repository_url }}">View On GitHub</a></li>
26
+ {% endif %}
27
+
28
+ {% if site.show_downloads %}
29
+ {% if site.github.zip_url %}
30
+ <li class="downloads"><a href="{{ site.github.zip_url }}">ZIP</a></li>
31
+ {% endif %}
32
+
33
+ {% if site.github.tar_url %}
34
+ <li class="downloads"><a href="{{ site.github.tar_url }}">TAR</a></li>
35
+ {% endif %}
36
+
37
+ <li class="title">DOWNLOADS</li>
38
+ {% endif %}
39
+ </nav>
40
+ </div><!-- end header -->
41
+ {% endif %}
42
+
43
+ <div class="wrapper">
44
+ {% if site.show_header %}<section>
45
+ {% else %}<section class="no-header">{% endif %}
46
+ <div id="title">
47
+ {% if page.icon %}
48
+ <img src="{{ page.icon | relative_url }}" />
49
+ {% endif %}
50
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
51
+ <p>{{ site.description | default: site.github.project_tagline }}</p>
52
+ <hr>
53
+ </div>
54
+
55
+ {{ content }}
56
+
57
+ <div class="listings">
58
+ {% for category in page.listings %}
59
+ <div class="listings-category">
60
+ <h2 class="title">{{ category[0] }}</h2>
61
+ {% for listing in category[1] %}
62
+ <div class="listing">
63
+ {% if listing[1].link contains 'http' %}
64
+ <a href="{{ listing[1].link }}">
65
+ {% else %}
66
+ <a href="{{ listing[1].link | baseurl }}">
67
+ {% endif %}
68
+ <img src="{{ listing[1].icon | relative_url }}" />
69
+ <h3>{{ listing[0] }}</h3>
70
+ </a>
71
+ </div>
72
+ {% endfor %}
73
+ </div>
74
+ {% endfor %}
75
+ </div>
76
+
77
+ <a href="../" class="button">Back</a>
78
+
79
+ <div id="footer">
80
+ <hr />
81
+ <span class="credits left">Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></span>
82
+ <span class="credits right">Hosted on GitHub Pages &mdash; Theme by <a href="https://draculatheme.com/">Dracula</a></span>
83
+ </div>
84
+ </section>
85
+
86
+ </div>
87
+
88
+ {% if site.google_analytics %}
89
+ <script type="text/javascript">
90
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
91
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
92
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
93
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
94
+ ga('create', '{{ site.google_analytics }}', 'auto');
95
+ ga('send', 'pageview');
96
+ </script>
97
+ {% endif %}
98
+ </body>
99
+ </html>
@@ -0,0 +1,85 @@
1
+ // Colorspace overrides
2
+
3
+ .cyan {
4
+ h1 { color: $cyan; }
5
+ h2, h3 { color: $green; }
6
+ h4, h5, h6 { color: $orange; }
7
+ a {
8
+ color: $cyan;
9
+ &:hover { color: darken($cyan, 20%); }
10
+ }
11
+ hr { background: $cyan; }
12
+ blockquote { border-color: $cyan; }
13
+ }
14
+
15
+ .green {
16
+ h1 { color: $green; }
17
+ h2, h3 { color: $cyan; }
18
+ h4, h5, h6 { color: $yellow; }
19
+ a {
20
+ color: $green;
21
+ &:hover { color: darken($green, 20%); }
22
+ }
23
+ hr { background: $green; }
24
+ blockquote { border-color: $green; }
25
+ }
26
+
27
+ .orange {
28
+ h1 { color: $orange; }
29
+ h2, h3 { color: $yellow; }
30
+ h4, h5, h6 { color: $green; }
31
+ a {
32
+ color: $orange;
33
+ &:hover { color: darken($orange, 20%); }
34
+ }
35
+ hr { background: $orange; }
36
+ blockquote { border-color: $orange; }
37
+ }
38
+
39
+ .pink {
40
+ h1 { color: $pink; }
41
+ h2, h3 { color: $purple; }
42
+ h4, h5, h6 { color: $orange; }
43
+ a {
44
+ color: $pink;
45
+ &:hover { color: darken($pink, 20%); }
46
+ }
47
+ hr { background: $pink; }
48
+ blockquote { border-color: $pink; }
49
+ }
50
+
51
+ .purple {
52
+ h1 { color: $purple; }
53
+ h2, h3 { color: $green; }
54
+ h4, h5, h6 { color: $cyan; }
55
+ a {
56
+ color: $purple;
57
+ &:hover { color: darken($purple, 20%); }
58
+ }
59
+ hr { background: $purple; }
60
+ blockquote { border-color: $purple; }
61
+ }
62
+
63
+ .red {
64
+ h1 { color: $red; }
65
+ h2, h3 { color: $yellow; }
66
+ h4, h5, h6 { color: $pink; }
67
+ a {
68
+ color: $red;
69
+ &:hover { color: darken($red, 20%); }
70
+ }
71
+ hr { background: $red; }
72
+ blockquote { border-color: $red; }
73
+ }
74
+
75
+ .yellow {
76
+ h1 { color: $yellow; }
77
+ h2, h3 { color: $pink; }
78
+ h4, h5, h6 { color: $green; }
79
+ a {
80
+ color: $yellow;
81
+ &:hover { color: darken($yellow, 20%); }
82
+ }
83
+ hr { background: $yellow; }
84
+ blockquote { border-color: $yellow; }
85
+ }
data/_sass/fonts.scss ADDED
@@ -0,0 +1,55 @@
1
+ /* source-sans-pro-300 - latin */
2
+ @font-face {
3
+ font-family: 'Source Sans Pro';
4
+ font-style: normal;
5
+ font-weight: 300;
6
+ src: url('../fonts/source-sans-pro-v11-latin-300.eot'); /* IE9 Compat Modes */
7
+ src: local('Source Sans Pro Light'), local('SourceSansPro-Light'),
8
+ url('../fonts/source-sans-pro-v11-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
9
+ url('../fonts/source-sans-pro-v11-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
10
+ url('../fonts/source-sans-pro-v11-latin-300.woff') format('woff'), /* Modern Browsers */
11
+ url('../fonts/source-sans-pro-v11-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
12
+ url('../fonts/source-sans-pro-v11-latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
13
+ }
14
+
15
+ /* source-sans-pro-regular - latin */
16
+ @font-face {
17
+ font-family: 'Source Sans Pro';
18
+ font-style: normal;
19
+ font-weight: 400;
20
+ src: url('../fonts/source-sans-pro-v11-latin-regular.eot'); /* IE9 Compat Modes */
21
+ src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'),
22
+ url('../fonts/source-sans-pro-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
23
+ url('../fonts/source-sans-pro-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
24
+ url('../fonts/source-sans-pro-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
25
+ url('../fonts/source-sans-pro-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
26
+ url('../fonts/source-sans-pro-v11-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
27
+ }
28
+
29
+ /* source-sans-pro-600 - latin */
30
+ @font-face {
31
+ font-family: 'Source Sans Pro';
32
+ font-style: normal;
33
+ font-weight: 600;
34
+ src: url('../fonts/source-sans-pro-v11-latin-600.eot'); /* IE9 Compat Modes */
35
+ src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'),
36
+ url('../fonts/source-sans-pro-v11-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
37
+ url('../fonts/source-sans-pro-v11-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
38
+ url('../fonts/source-sans-pro-v11-latin-600.woff') format('woff'), /* Modern Browsers */
39
+ url('../fonts/source-sans-pro-v11-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
40
+ url('../fonts/source-sans-pro-v11-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
41
+ }
42
+
43
+ /* noto-serif-700 - latin */
44
+ @font-face {
45
+ font-family: 'Noto Serif';
46
+ font-style: normal;
47
+ font-weight: 700;
48
+ src: url('../fonts/noto-serif-v6-latin-700.eot'); /* IE9 Compat Modes */
49
+ src: local('Noto Serif Bold'), local('NotoSerif-Bold'),
50
+ url('../fonts/noto-serif-v6-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
51
+ url('../fonts/noto-serif-v6-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
52
+ url('../fonts/noto-serif-v6-latin-700.woff') format('woff'), /* Modern Browsers */
53
+ url('../fonts/noto-serif-v6-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
54
+ url('../fonts/noto-serif-v6-latin-700.svg#NotoSerif') format('svg'); /* Legacy iOS */
55
+ }