mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2024-11-27 23:55:47 +01:00
Version 2.3.0 release
This commit is contained in:
parent
d9f725c592
commit
269e4d647e
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## 2.3.0
|
||||
|
||||
- Add special _'help'_ command for dummies
|
||||
- Add `::selection` styling rules
|
||||
|
||||
## 2.2.0
|
||||
|
||||
- Change copyright header
|
||||
|
@ -12,6 +12,11 @@
|
||||
body {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: whitesmoke;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
@ -23,6 +28,11 @@
|
||||
body {
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: black;
|
||||
color: whitesmoke;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
@ -43,6 +43,9 @@ window.addEventListener('keypress', (evt) => {
|
||||
case 'github':
|
||||
window.open('https://github.com/maciejpedzich');
|
||||
break;
|
||||
case "'help'":
|
||||
output.textContent = 'Without the quotes, dummy.';
|
||||
break;
|
||||
case 'help':
|
||||
output.innerHTML = `<p>about - shows everything you need to know about Maciej</p>
|
||||
<p>cls - clears screen</p>
|
||||
|
@ -12,7 +12,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<p>maciejpedzi.ch [Version 2.2.0]</p>
|
||||
<p>maciejpedzi.ch [Version 2.3.0]</p>
|
||||
<p>(C) Maciej Pedzich <span id="current-year"></span></p>
|
||||
<p id="hint">Welcome! Type 'help' for more information</p>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user