Transitional release

This commit is contained in:
Maciej Pędzich 2021-07-08 18:05:09 +02:00
parent cd7ea8f7ee
commit 696904a26f
3 changed files with 38 additions and 85 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 3.0.0
- coming July 25th 2021
## 2.4.1
- Set `inputHistory` in localStorage to a stringified array, rather tan a string of comma-separated values

View File

@ -1,84 +1,39 @@
@font-face {
font-family: 'VGA 437';
src: url('../fonts/vga437.ttf');
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
@media (prefers-color-scheme: dark) {
body,
#cmd {
color: whitesmoke;
}
body {
background-color: black;
}
::selection {
background-color: whitesmoke;
color: black;
}
}
@media (prefers-color-scheme: light) {
body,
#cmd {
color: black;
}
body {
background-color: whitesmoke;
}
::selection {
background-color: black;
color: whitesmoke;
}
}
@media (min-width: 1200px) {
body {
overflow: hidden;
}
}
body,
#cmd {
font-family: 'VGA 437';
font-size: 1.5rem;
}
#cmd-history > p {
line-height: 2rem;
}
#header > p {
margin: 0.5rem auto;
}
#header > #hint,
#input-container,
#cmd-history {
margin-top: 1.8rem;
}
#input-container {
body {
display: flex;
flex-direction: column;
}
#bracket {
padding-right: 0.75rem;
text-align: center;
vertical-align: middle;
line-height: 1.7rem;
.frame {
flex-grow: 1;
background-color: #00309c;
}
#cmd {
border: none;
background: none;
flex: 1;
#welcome-container {
flex-grow: 5;
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
background: radial-gradient(
circle at left top,
rgb(249, 249, 249) 0%,
#5a7edc 25%,
#5a7edc 40%,
#5a7edc 100%
);
}
#cmd:active,
#cmd:focus {
outline: none;
#welcome-text {
color: #fff;
text-shadow: 3px 4px 0px rgb(49, 81, 181);
font-size: 5rem;
font-weight: bold;
}

View File

@ -4,23 +4,17 @@
<meta charset="UTF-8" />
<meta
name="description"
content="Maciej Pędzich - future full-stack web developer, high school student, retro video games and F1 fan. All in one person."
content="Maciej Pędzich - high school student, VENM stack developer, author of Mac's WEBlog, WinXP & chicken strips aficionado"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maciej Pędzich</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div id="header">
<p>maciejpedzi.ch [Version 2.4.1]</p>
<p>(C) Maciej Pedzich <span id="current-year"></span></p>
<p id="hint">Welcome! Type 'help' for more information</p>
<div class="frame"></div>
<div id="welcome-container">
<em id="welcome-text">soon</em>
</div>
<div id="cmd-history"></div>
<div id="input-container">
<div id="bracket">></div>
<input type="text" id="cmd" autocomplete="off" />
</div>
<script src="./assets/js/script.js"></script>
<div class="frame"></div>
</body>
</html>