-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (90 loc) · 2.86 KB
/
index.html
File metadata and controls
99 lines (90 loc) · 2.86 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- set the favicon -->
<link rel="shortcut icon" href="./assets/favicon.png" type="image/x-icon" />
<title>Figma</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="./css/style-responsive.css">
<!-- Remix Icon CDN -->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.8.0/fonts/remixicon.css"
rel="stylesheet"
/>
</head>
<body>
<!-- Loading Screen -->
<div class="loading-screen" id="loadingScreen">
<i class="ri-figma-line loading-icon"></i>
</div>
<!-- Landing Page -->
<div class="app" id="app">
<!-- Mobile Menu Toggle -->
<button class="menu-toggle" id="menuToggle">
<i class="ri-menu-line"></i>
</button>
<!-- Sidebar -->
<aside class="sidebar" id="sidebar">
<div class="logo">
<img src="./assets/favicon.png" alt="" />
<span>Figma</span>
</div>
<input type="text" class="search" placeholder="Search" />
<nav class="nav">
<a href="#" data-route="recents">
<i class="ri-time-line"></i> Recents
</a>
<a href="#" data-route="community">
<i class="ri-community-line"></i> Community
</a>
<a href="#" data-route="drafts">
<i class="ri-draft-line"></i> Drafts
</a>
<a href="#" data-route="projects">
<i class="ri-folder-line"></i> All projects
</a>
<a href="#" data-route="resources">
<i class="ri-hourglass-line"></i> Resources
</a>
<a href="#" data-route="trash">
<i class="ri-delete-bin-7-line"></i> Trash
</a>
</nav>
</aside>
<!-- Sidebar Overlay for Mobile -->
<div class="sidebar-overlay" id="sidebarOverlay"></div>
<!-- Main -->
<main class="main">
<!-- Header -->
<header class="topbar">
<h1>Designs</h1>
<button class="top-actions" id="createBtn">
Create <i class="ri-add-large-line"></i>
</button>
</header>
<hr />
<!-- Filters -->
<div class="filters">
<button>All files</button>
</div>
<!-- Cards -->
<section class="cards">
<!-- New Project Card -->
<div class="card" id="newProjectCard">
<div class="thumbnail new-project">
<i class="ri-add-large-fill"></i>
</div>
<div class="card-info">
<h4>New Project</h4>
<p>Click to create a new design</p>
</div>
</div>
</section>
</main>
</div>
<!-- Link to JavaScript -->
<script type="module" src="./js/main.js"></script>
</body>
</html>