tutoringresources/index.html
2025-04-06 15:58:53 +01:00

215 lines
7.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tutoring With Otto - Software Guide</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
line-height: 1.6;
color: #cad3f5; /* Text */
background-color: #24273a; /* Base */
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #1e2030; /* Mantle */
color: #cad3f5; /* Text */
text-align: center;
padding: 2rem;
margin-bottom: 2rem;
border-bottom: 3px solid #8aadf4; /* Blue */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
flex: 1;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #363a4f; /* Surface0 */
box-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.3);
border-radius: 5px;
overflow: hidden;
margin-bottom: 2rem;
}
th {
background-color: #494d64; /* Surface1 */
color: #8aadf4; /* Blue */
text-align: left;
padding: 1rem;
border-bottom: 2px solid #8aadf4; /* Blue */
}
td {
padding: 1rem;
border-top: 1px solid #494d64; /* Surface1 */
vertical-align: middle;
}
.logo-container {
display: flex;
align-items: center;
gap: 15px;
}
.logo {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background-color: #494d64; /* Surface1 */
border-radius: 8px;
}
.logo img {
width: 40px;
height: 40px;
padding: 4px;
}
.app-name {
font-weight: bold;
font-size: 1.1rem;
color: #b7bdf8; /* Lavender */
}
.description {
color: #a5adcb; /* Subtext0 */
line-height: 1.5;
}
.download-btn {
display: inline-block;
background-color: #8aadf4; /* Blue */
color: #24273a; /* Base */
padding: 0.5rem 1.5rem;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
text-align: center;
transition: background-color 0.3s, transform 0.2s;
}
.download-btn:hover {
background-color: #7dc4e4; /* Sapphire */
transform: translateY(-2px);
}
footer {
text-align: center;
padding: 1rem;
background-color: #1e2030; /* Mantle */
color: #a5adcb; /* Subtext0 */
margin-top: auto;
width: 100%;
border-top: 3px solid #8aadf4; /* Blue */
}
@media (max-width: 768px) {
table {
display: block;
overflow-x: auto;
}
}
b {
color: #8aadf4; /* Blue */
}
</style>
</head>
<body>
<header>
<h1>Computer Science Software Installation Guide</h1>
<p>Essential software for computer science students</p>
</header>
<div class="container">
<table>
<thead>
<tr>
<th style="width: 25%;">Software</th>
<th style="width: 55%;">Description</th>
<th style="width: 20%;">Download</th>
</tr>
</thead>
<tbody>
<!-- PyCharm Community -->
<tr>
<td>
<div class="logo-container">
<div class="logo">
<img src="./icons/pycharm.svg" alt="PyCharm Logo"/>
</div>
<span class="app-name">PyCharm Community</span>
</div>
</td>
<td class="description">
A powerful and intelligent <b>Python IDE</b> by JetBrains.
</td>
<td style="text-align: center;">
<a href="https://www.jetbrains.com/pycharm/download/" class="download-btn">Download</a>
</td>
</tr>
<!-- RustDesk -->
<tr>
<td>
<div class="logo-container">
<div class="logo">
<img src="./icons/rustdesk.svg" alt="RustDesk Logo"/>
</div>
<span class="app-name">RustDesk</span>
</div>
</td>
<td class="description">
An open-source <b>remote desktop software</b> to allow you to share screen for coding exercises and exam paper help.
</td>
<td style="text-align: center;">
<a href="https://rustdesk.com/download/" class="download-btn">Download</a>
</td>
</tr>
<!-- Mattermost -->
<tr>
<td>
<div class="logo-container">
<div class="logo">
<img src="./icons/mattermost.svg" alt="Mattermost Logo"/>
</div>
<span class="app-name">Mattermost</span>
</div>
</td>
<td class="description">
An open-source, self-hostable messaging platform designed for team collaboration. Mattermost provides secure communication with features like file sharing, search functionality, and integrations with developer tools like GitHub and Jenkins.
</td>
<td style="text-align: center;">
<a href="https://mattermost.com/download/" class="download-btn">Download</a>
</td>
</tr>
<!-- Excalidraw -->
<tr>
<td>
<div class="logo-container">
<div class="logo">
<img src="./icons/excalidraw.svg" alt="Excalidraw Logo"/>
</div>
<span class="app-name">Excalidraw</span>
</div>
</td>
<td class="description">
A virtual collaborative whiteboard tool that lets you easily sketch diagrams with a hand-drawn feel. Perfect for creating flowcharts, wireframes, and diagrams for programming concepts, system architecture, and algorithm visualization.
</td>
<td style="text-align: center;">
<a href="https://excalidraw.com/" class="download-btn">Download</a>
</td>
</tr>
</tbody>
</table>
</div>
<footer>
<p>Otto Helen-Goldring &copy; 2025</p>
</footer>
</body>
</html>