Skip to content

Commit 3310d62

Browse files
committed
Add more favicon types
1 parent c50a83f commit 3310d62

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

favicon-96x96.png

5.01 KB
Loading

favicon.ico

14.7 KB
Binary file not shown.

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<meta name="description" content="Information and links on the OpenDream project">
77
<title>OpenDream Game Engine</title>
88
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
9+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
10+
<link rel="shortcut icon" href="/favicon.ico" />
911
<link rel="stylesheet" href="style.css" />
1012
</head>
1113
<body>

style.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
@media (prefers-color-scheme: light) {
66
:root {
77
--background-color: #fafafa;
8-
--text-color: #black;
8+
--text-color: black;
99
--link-color: #00e;
1010
--contents-box-shadow: grey;
1111
--hero-button-box-shadow: black;
1212
--hero-button-background: #fffb;
13+
--hero-button-text-color: black;
1314
}
1415
}
1516

@@ -21,6 +22,7 @@
2122
--contents-box-shadow: black;
2223
--hero-button-box-shadow: white;
2324
--hero-button-background: #000b;
25+
--hero-button-text-color: white;
2426
}
2527
}
2628

@@ -98,7 +100,7 @@ a:hover {
98100

99101
#hero-links p {
100102
float: right;
101-
color: var(--text-color);
103+
color: var(--hero-button-text-color);
102104
margin: 0px 0px 0px 4px;
103105
font-size: 24px;
104106
}

0 commit comments

Comments
 (0)