This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.html
41 lines (38 loc) · 1.59 KB
/
project.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>SC4 | Viewing Project</title>
<link rel="stylesheet" href="styles/main.less">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="top">
<h1 id="projectName"></h1>
</div>
<div class="author">
<img class="author__pfp ripple"> <span class="author__username">by <a href="#" id="authorName"></a></span>
</div>
<div class="project__wrapper">
<div id="turboRender" class="project__render"></div>
</div>
<div class="slideout slideout--out" id="slider">
<h2 class="slideout__title">Comments</h2>
<div class="comments" id="commentSection">
</div>
<div class="centered">
<a href="#" class="centered__button ripple" id="viewMore">View more</a>
</div>
</div>
<a class="fab fab--right ripple" id="toggleComments"><img src="./asset/icon-comment.svg" class="fab__icon"></a>
<!-- Loader by Jeremie Gaffarel, https://codepen.io/gaffareljeremie -->
<svg class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="spinner__circle" fill="none" stroke-width="0.4em" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
<script src="./cordova.js" charset="utf-8"></script>
<script src="scripts/project.js" charset="utf-8"></script>
<script src="scripts/theme.js" charset="utf-8"></script>
</body>
</html>