slacker 2.0
This commit is contained in:
13 files changed
+728
-554
No files matched your search
Regular → Executable
+13
-101
@@ -1,118 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>COMP 1800 - Slacker</title>
|
||||
|
||||
<style>
|
||||
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Oxygen, Ubuntu, Cantarell, open sans, helvetica neue, sans-serif;
|
||||
padding: 0pt;
|
||||
margin: 0pt;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
.main {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 25%;
|
||||
height: auto;
|
||||
padding: 24pt;
|
||||
border-radius: 24px;
|
||||
justify-content: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
ul li {
|
||||
margin-bottom: 12pt;
|
||||
}
|
||||
|
||||
.link {
|
||||
font-size: 30px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.flex-container-c {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.flex-container-r {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
footer {
|
||||
width: 100vw;
|
||||
position: fixed;
|
||||
bottom: 0%;
|
||||
left: 0%;
|
||||
background-color: #aaaaaa;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
transition: .8s;
|
||||
padding: 8pt;
|
||||
}
|
||||
|
||||
footer a {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
text-decoration: underline;
|
||||
color: black
|
||||
}
|
||||
|
||||
footer p {
|
||||
margin-top: 16pt;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
padding: 12pt 0;
|
||||
}
|
||||
|
||||
.social-icons a:not(:last-of-type) {
|
||||
margin-inline-end: 12pt;
|
||||
}
|
||||
|
||||
.social-icons a svg {
|
||||
height: 26pt;
|
||||
width: 26pt;
|
||||
}
|
||||
|
||||
.social-icons a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.icon {
|
||||
transition: 0.8s;
|
||||
}
|
||||
</style>
|
||||
<title>COMP 2800 - Slacker</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/index.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<section class="main">
|
||||
<div>
|
||||
<h1 class="title">COMP 1800 Slacker</h1>
|
||||
<h1 class="title">COMP 2800 Slacker</h1>
|
||||
<h3>See Leaderboards</h3>
|
||||
<p>PS: Some projects & users may not be up to date with others.</p>
|
||||
<p>Also, I am lazy and don't want to make a pretty table so you just get .txt files</p>
|
||||
<p>Check back for daily updates.</p>
|
||||
<p>
|
||||
Disclaimer: This reads commits from git log and may not match
|
||||
commits from Github insights.
|
||||
</p>
|
||||
<p>
|
||||
Additionally, any commits made through the Github web interface are ignored.
|
||||
</p>
|
||||
<p>
|
||||
Files with matching patterns may be ignored in your commits. E.g. node_module files.
|
||||
</p>
|
||||
<ul>
|
||||
<li><a class="link" href="/boards/TopContributorsAllTime">Top Contributor of All</a></li>
|
||||
<li><a class="link" href="/boards/TopContributorPerCampus">Top Contributor per Campus</a></li>
|
||||
<li><a class="link" href="/boards/TopContributorPerSet">Top Contributor per Set</a></li>
|
||||
<li><a class="link" href="/boards/TopContributorsPerTeam">Top Contributor per Team</a></li>
|
||||
<li><a class="link" href="/boards/LargestProjectAllTeams">Largest Project of All</a></li>
|
||||
<li><a class="link" href="/boards/LargestProjectsPerCampus">Largest Project per Campus</a></li>
|
||||
<li><a class="link" href="/boards/LargestProjectPerSet">Largest Project per Set</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in new issue
Block a user