-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
132 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |