-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassets.html
103 lines (98 loc) · 5.58 KB
/
assets.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
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
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>SMC Tools - Assets</title>
</head>
<body>
<div class="mainContentBox">
<div class="header">
<h1>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<rect width="184.87" height="35.36" x="23.19" y="162" rx="17.68" ry="17.68" class="mainContrastFill"></rect>
<rect width="50.15" height="35.36" x="224.97" y="162" rx="17.68" ry="17.68" class="secondaryColorFill"></rect>
<rect width="125.97" height="35.36" x="23.19" y="102.64" rx="17.68" ry="17.68" class="mainLighterFill"></rect>
<rect width="87.87" height="35.36" x="23.19" y="221.36" rx="17.68" ry="17.68" class="secondaryColorFill"></rect>
<rect width="147.15" height="35.36" x="127.98" y="221.36" rx="17.68" ry="17.68" class="secondaryColorFill"></rect>
<rect width="109.06" height="35.36" x="166.07" y="102.64" rx="17.68" ry="17.68" class="mainContrastFill"></rect>
<rect width="81.74" height="35.36" x="23.19" y="43.27" rx="17.68" ry="17.68" class="secondaryColorFill"></rect>
<rect width="153.83" height="35.36" x="122.98" y="43.27" rx="17.68" ry="17.68" class="secondaryColorFill"></rect>
</svg><span>SMC TOOLS</span>
</h1>
<button onclick="document.querySelector('.mobileMenu').classList.toggle('display')" class="toggleMenu mainBtn">MENU</button>
<ul class="mobileMenu">
<li><a href="index.html" class="menuLink">Microphones</a></li>
<li><a href="eartraining.html" class="menuLink">Ear Training</a></li>
<li><a href="assets.html" class="menuLink">Assets</a></li>
<li><a href="randomchain.html" class="menuLink">Patchbay Practice</a></li>
</ul>
</div>
</div>
<div class="bodyContent">
<div class="triBox">
<label for="Session" class="triBoxSingle">
<div>
<h2>SESSIONS</h2>
<p>Explore a selection of curated Pro Tools and Logic sessions, including shootouts, templates, and more.</p>
</div>
<span class="goArrow">
GO
<svg id="i-chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M12 30 L24 16 12 2" />
</svg>
</span>
</label>
<label for="WebResource" class="triBoxSingle">
<div>
<h2>WEB RESOURCES</h2>
<p>Discover a variety of web-based resources and tools to help you in your musical and professional career.</p>
</div>
<span class="goArrow">
GO
<svg id="i-chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M12 30 L24 16 12 2" />
</svg>
</span>
</label>
<label for="Software" class="triBoxSingle">
<div>
<h2>PLUGINS</h2>
<p>Dive into a variety of recommended audio editing and music production plugins and instruments.</p>
</div>
<span class="goArrow">
GO
<svg id="i-chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M12 30 L24 16 12 2" />
</svg>
</span>
</label>
</div>
</div>
<div class="assetFilters">
<div class="flexHead">
<h2>Filter by</h2>
<input type="text" placeholder="Search..." onkeyup="updateFilters('TextSearch', this.value)" class="searchBox">
</div>
<div class="assetControls">
<fieldset class="styledFieldset">
<legend>Resource Type</legend>
<label><input class="assetCheck" type="checkbox" id="Session" value="Session" onclick="updateFilters('Category', 'Session')" /><span class="checkboxFill"></span> Session</label>
<label><input class="assetCheck" type="checkbox" id="WebResource" value="Web Resource" onclick="updateFilters('Category', 'Web Resource')" /><span class="checkboxFill"></span> Web Resource</label>
<label><input class="assetCheck" type="checkbox" id="Software" value="Software" onclick="updateFilters('Category', 'Software')" /><span class="checkboxFill"></span> Software</label>
</fieldset>
</div>
</div>
<div class="assetContainer">
<!-- <a class="assetBox" href="assetURL.html">
<h3>Asset Title</h3>
<span>Asset Category</span>
<p>A free online Photoshop alternative with an almost identical interface.</p>
</a> -->
</div>
<script src="smc-js/assets.js"></script>
<script src="smc-js/assetScripts.js"></script>
</body>
</html>