Skip to content

Commit 64bb9e6

Browse files
committed
Small changes
1 parent 9f7ef26 commit 64bb9e6

File tree

2 files changed

+8
-50
lines changed

2 files changed

+8
-50
lines changed

_layouts/default.html

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
{% seo %}
99
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<link rel="icon" href="https://cdn.mxis.ch/assets/drkmd-js/moon.png">
1011
<!--[if lt IE 9]>
1112
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
1213
<![endif]-->
@@ -45,23 +46,11 @@ <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repo
4546

4647
</section>
4748
<footer>
48-
{% if site.github.is_project_page %}
49-
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
50-
{% endif %}
51-
<p>Website: <a href="https://mxis.ch">mxis.ch</a></p>
49+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">Maximilian Schiller</a></p>
50+
<p>GitHub: <a href="{{ site.github.owner_url }}">@BetaHuhn</a> - Website: <a href="https://mxis.ch">mxis.ch</a></p>
5251
</footer>
5352
</div>
5453
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
55-
{% if site.google_analytics %}
56-
<script>
57-
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
58-
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
59-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
60-
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
61-
ga('create', '{{ site.google_analytics }}', 'auto');
62-
ga('send', 'pageview');
63-
</script>
64-
{% endif %}
6554
<script>
6655
function addDarkmode() {
6756
new Darkmode().attach();

assets/css/style.scss

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
--font: #222;
1010
--font-light: #727272;
1111
--blue: #267CB9;
12+
--blue-hover: #1a77b9;
1213
}
1314

1415
[data-theme="dark"] {
@@ -18,6 +19,7 @@
1819
--font: rgb(236, 236, 236);
1920
--font-light: #8b949e;
2021
--blue: #58A6FF;
22+
--blue-hover: #3f95f8;
2123
}
2224

2325
body {
@@ -59,19 +61,19 @@ a {
5961
}
6062

6163
a:hover, a:focus {
62-
color:#069;
64+
color: var(--blue-hover);
6365
font-weight: bold;
6466
}
6567

6668
a small {
6769
font-size:11px;
68-
color:#777;
70+
color: var(--font-light);
6971
margin-top:-0.3em;
7072
display:block;
7173
}
7274

7375
a:hover small {
74-
color:#777;
76+
color: var(--font-light);
7577
}
7678

7779
.wrapper {
@@ -86,39 +88,6 @@ blockquote {
8688
font-style:italic;
8789
}
8890

89-
code, pre {
90-
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
91-
color: var(--font);
92-
}
93-
94-
pre {
95-
padding:8px 15px;
96-
background: var(--background-sec);
97-
border-radius:5px;
98-
border:1px solid var(--background-sec-dark);
99-
overflow-x: auto;
100-
}
101-
102-
table {
103-
width:100%;
104-
border-collapse:collapse;
105-
}
106-
107-
th, td {
108-
text-align:left;
109-
padding:5px 10px;
110-
border-bottom:1px solid var(--background-sec-dark);
111-
}
112-
113-
dt {
114-
color: var(--font);
115-
font-weight:700;
116-
}
117-
118-
th {
119-
color: var(--font);
120-
}
121-
12291
img {
12392
max-width:100%;
12493
}

0 commit comments

Comments
 (0)