rewrite: major rework of home page #1

Merged
Trianta merged 2 commits from rewrite into main 2024-08-09 03:04:41 -05:00
7 changed files with 457 additions and 256 deletions

1
.htaccess Normal file
View File

@ -0,0 +1 @@
DirectoryIndex home.html

156
css/home.css Normal file
View File

@ -0,0 +1,156 @@
/* Whole document */
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 1rem;
color: #cad3f5;
line-height: 1.5;
width: 800px;
margin-inline: auto;
background: #24273a;
padding: 6px;
margin: 10px auto;
}
/*
.title {
display: none;
}
*/
#top {
margin-bottom: 6px;
border-radius: 16px;
border-top-left-radius: 0px;
margin: 4px auto;
margin-top: 0px;
height: 55px;
}
#main {
background: #1e2030;
}
/* Title of the resume */
h1 {
width: 130px;
text-align: center;
display: inline-block;
font-size: 1.8rem;
margin: 0px;
padding: 8px;
border-top-left-radius: 18px;
border-top-right-radius: 18px;
}
/* Titles of categories */
h2 {
color: #f5a97f;
font-size: 1.8rem;
text-align: center;
margin-top: 0;
margin-bottom: 0.5rem;
}
h3 {
color: #dc8a78;
font-size: 1.3rem;
margin-top: 0;
margin-bottom: 0;
}
h4 {
color: #8c8fa1;
font-size: 1.1rem;
margin-top: 0;
margin-bottom: 0.5rem;
}
/* Definitions */
dt {
float: left;
clear: left;
width: 17%;
font-weight: bold;
}
dd {
margin-left: 17%;
}
p {
margin-top: 0;
margin-bottom: 4px;
}
/* Links */
a {
text-decoration: none;
padding: 8px;
color: #8aadf4;
}
a:hover, a:active {
border-radius: 9px;
text-decoration: underline;
text-shadow: 1px 1px 1px #333;
animation: animate 3s linear infinite;
}
a.button {
margin: 14px 10%;
padding: 4px 12px;
border: 1px outset #494d64;
border-radius: 9px;
color: #8aadf4;
display: inline-block;
background-color: #363a4f;
text-decoration: none;
width: 80px;
text-align: center;
}
/* Horizontal separators */
hr {
color: #A6A6A6;
}
/* List spacing */
ul, ol {
padding-left: 1em; /* Keeping padding relative to the font size of the list */
}
li {
margin-top: 0.25em;
}
p, li {
margin-top: 0;
line-height: 1.6;
}
@keyframes animate {
0% { box-shadow: 0 0 8px 4px #24273a; }
15% { box-shadow: 0 0 8px 4px #494d64; }
50% { box-shadow: 0 0 8px 4px #b7bdf8; }
85% { box-shadow: 0 0 8px 4px #494d64; }
100% { box-shadow: 0 0 8px 4px #24273a; }
}
.card {
background: #363a4f;
text-align: center;
border-radius: 6px;
border-top-left-radius: 18px;
border-top-right-radius: 18px;
}
.card-top {
background: #1e2030;
border-top-left-radius: 18px;
border-top-right-radius: 18px;
}
#pong {
margin: 6px;
border-radius: 9px;
background: #494d64;
}

View File

@ -20,3 +20,4 @@ body {
cursor: pointer;
position: relative;
}

52
home.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Trianta</title>
<link rel="stylesheet" href="css/home.css" />
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div>
<h1 style="background: #1e2030">Trianta</h1>
<h1><a href="https://www.github.com/trimutex">GitHub</a></h1>
<h1><a href="https://lab.trianta.dev/Trianta">Projects</a></h1>
</div>
<div id="main">
<div class="card">
<h2 class="card-top">Pong</h3>
<div>
<canvas width="750" height="585" id="pong"></canvas>
<script src="js/pong.js"></script>
<div id="gameover" hidden="true">
<h1>Game Over</h1>
</div>
<div id="restart" hidden="true">
<button class="button" type="button" onclick = "restartGame()">Restart Game</a>
</div>
</div>
</div>
</div>
</body>
</html>

View File

@ -6,7 +6,5 @@
<link rel="stylesheet" href="style.css">
</head>
<body>
<button class="button" type="button" onclick="window.location.href='pong.html'">Start Game</button>
<script src = "scripts.js"></script>
</body>
</html>

View File

@ -1,4 +1,4 @@
const canvas = document.getElementById('game');
const canvas = document.getElementById('pong');
const context = canvas.getContext('2d');
const grid = 15;
const paddleHeight = grid * 5; // 80
@ -178,7 +178,7 @@ function loop() {
context.fillRect(ball.x, ball.y, ball.width, ball.height);
// draw walls
context.fillStyle = 'lightgrey';
context.fillStyle = "#f4dbd6";
context.fillRect(0, 0, canvas.width, grid);
context.fillRect(0, canvas.height - grid, canvas.width, canvas.height);
@ -221,3 +221,4 @@ document.addEventListener('keyup', function(e) {
// start the game
requestAnimationFrame(loop);

View File

@ -4,17 +4,9 @@
<head>
<title>Pong Game</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/pong.css">
</head>
<body>
<canvas width="750" height="585" id="game"></canvas>
<script src="scripts.js"></script>
<div id="gameover" hidden="true">
<h1>Game Over</h1>
</div>
<div id="restart" hidden="true">
<button class="button" type="button" onclick = "restartGame()">Restart Game</a>
</div>
</body>
</html>