Skip to content

Commit

Permalink
deploy: 84ae934
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE committed Oct 7, 2023
1 parent 4e05754 commit fc3ff94
Show file tree
Hide file tree
Showing 10 changed files with 132 additions and 3 deletions.
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documentation</title>
<link rel="stylesheet" href="static/main.css">
<link rel="stylesheet" href="static/circle.css">
<link rel="stylesheet" href="static/lang.css">
</head>

<body>
<div id="container">
<div id="top-section">
<h1>Documentation</h1>
<p>Click either sections on the bottom to go to their respective documentation.</p>
</div>
<div id="bottom-section">
<div id="cpp" class="sub-section">
<a href="doxygen">
<div class="box">
<h2>Backend</h2>
<div class="circle">
<img src="./static/ISO_C++_Logo.svg.png" alt="C++ Logo">
</div>
</a>
</div>
</div>
<div id="js" class="sub-section">
<a href="jsdoc">
<div class="box">
<h2>Frontend</h2>
<div class="circle">
<img src="./static/JavaScript-logo.png" alt="Javascript Logo">
</div>
</div>
</a>
</div>
</div>
</div>
</body>

</html>
2 changes: 1 addition & 1 deletion jsdoc/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ <h2><a href="index.html">Home</a></h2><h3>Global</h3><ul><li><a href="global.htm
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 16:44:15 GMT+0000 (Coordinated Universal Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 17:56:35 GMT+0000 (Coordinated Universal Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion jsdoc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2><a href="index.html">Home</a></h2><h3>Global</h3><ul><li><a href="global.htm
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 16:44:15 GMT+0000 (Coordinated Universal Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 17:56:35 GMT+0000 (Coordinated Universal Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion jsdoc/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2><a href="index.html">Home</a></h2><h3>Global</h3><ul><li><a href="global.htm
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 16:44:15 GMT+0000 (Coordinated Universal Time)
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Sat Oct 07 2023 17:56:35 GMT+0000 (Coordinated Universal Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
Binary file added static/ISO_C++_Logo.svg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/JavaScript-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/NotoSans-Regular.ttf
Binary file not shown.
18 changes: 18 additions & 0 deletions static/circle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.circle {
/*Center the circle*/
margin: auto;

width: 160px;
height: 160px;
border-radius: 50%;

/* Center the items */
display: flex;
justify-content: center;
align-items: center;
}

.circle img {
max-width: 50%;
max-height: 50%;
}
16 changes: 16 additions & 0 deletions static/lang.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#cpp {
background-color: #1A4D89;
color: white;
}

#cpp .circle {
background-color: #376399;
}

#js {
background-color: #F8EEB9;
}

#js .circle {
background-color: #E5DBAC;
}
51 changes: 51 additions & 0 deletions static/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
@font-face {
font-family: "NotoSans-Regular";
src: url("NotoSans-Regular.ttf") format("truetype");
}

body {
font-family: "NotoSans-Regular";
margin: 0;
padding: 0;
overflow: hidden;
}

h1 {
font-size: 5.5em;
}

h2 {
font-size: 4.875em;
}

a {
color: inherit;
text-decoration: inherit;
}

#container {
display: flex;
flex-direction: column;
height: 100vh;
}

#top-section {
flex: 1;
text-align: center;
}

#bottom-section {
display: flex;
flex: 1;
}

.sub-section {
flex: 1;
text-align: center;
}

.sub-section:hover {
flex: 1;
filter: brightness(80%);
text-align: center;
}

0 comments on commit fc3ff94

Please sign in to comment.