ps99-api 2.6.0 → 2.6.1
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.
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
<title>Pet Simulator 99 API</title>
|
|
8
8
|
<link rel="manifest" href="/node-ps99-api/manifest.json" />
|
|
9
9
|
<link rel="icon" href="/node-ps99-api/icons/icon-192x192.png" />
|
|
10
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
11
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
12
|
+
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
10
13
|
</head>
|
|
11
14
|
|
|
12
15
|
<body>
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
/* Import a cute, rounded font */
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');
|
|
1
|
+
/* Import a cute, rounded font - Moved to index.html for better performance */
|
|
3
2
|
|
|
4
3
|
:root {
|
|
5
4
|
--bg-color: #e0f7fa;
|
|
@@ -30,7 +29,8 @@ body,
|
|
|
30
29
|
|
|
31
30
|
body {
|
|
32
31
|
margin: 0;
|
|
33
|
-
font
|
|
32
|
+
/* improved font stack */
|
|
33
|
+
font-family: 'Fredoka', 'Nunito', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
|
34
34
|
background-color: var(--bg-color);
|
|
35
35
|
color: var(--text-color);
|
|
36
36
|
-webkit-font-smoothing: antialiased;
|