diff --git a/assets/css/site.css b/assets/css/site.css
index bed9223..76e5b6e 100644
--- a/assets/css/site.css
+++ b/assets/css/site.css
@@ -8,10 +8,10 @@
--primary: #00b0cd;
--secondary: #80c0cc;
- --yellow: #ECAF21;
- --yellow-body: #E29900;
+ --yellow: #ecaf21;
+ --yellow-txt: #e29900;
--red: #eb452b;
- --red-body: #de342a;
+ --red-txt: #de342a;
--blue: #0070C0;
--black: #272727;
--green: #03A653;
@@ -657,10 +657,10 @@ nav {
.problem
{
&:first-of-type mark {
- --mark-color: var(--yellow-body);
+ --mark-color: var(--yellow-txt);
}
&:nth-of-type(2) mark {
- --mark-color: var(--red-body);
+ --mark-color: var(--red-txt);
}
&:nth-of-type(3) mark {
--mark-color: var(--green);
@@ -776,11 +776,11 @@ mark {
padding-bottom: 0.25rem;
&[color="yellow"] {
- --mark-color: var(--yellow-body);
+ --mark-color: var(--yellow-txt);
}
&[color="red"] {
- --mark-color: var(--red-body);
+ --mark-color: var(--red-txt);
}
&[color="green"] {
@@ -802,10 +802,10 @@ span[color="blue"] {
color: var(--blue);
}
span[color="red"] {
- color: var(--red-body);
+ color: var(--red-txt);
}
span[color="yellow"] {
- color: var(--yellow-body);
+ color: var(--yellow-txt);
}
span[color="green"] {
color: var(--green);
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index ff38d36..2e89171 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -19,6 +19,16 @@
{{ end }}
+
+ {{ if fileExists "static/favicon-32.png" }}
+
+ {{ end }}
+ {{ if fileExists "static/apple-touch-icon.png" }}
+
+ {{ end }}
+ {{ if and (fileExists "static/android-chrome-192x192.png") (fileExists "static/android-chrome-512x512.png") }}
+
+ {{ end }}
{{ with resources.Get "css/site.css" | fingerprint }}
{{ end }}
@@ -91,4 +101,4 @@
{{ partial "footer.html" . }}