mue/index.html

162 lines
7.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
█████████████████████████████████████████████████████████████
██ ██
██ ███ ███ ██ ██ ███████ ██
██ ████ ████ ██ ██ ██ ██
██ ██ ████ ██ ██ ██ █████ ██
██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██████ ███████ ██
██ ██
██ ██
██ Copyright 2018-2019 David Ralph (ohlookitsderpy) ██
██ Licensed under MIT ██
██ GitHub: https://github.com/ohlookitsderpy/Mue ██
██ ██
██ Special thanks to contributors! <3 ██
█████████████████████████████████████████████████████████████
-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width'>
<title>New Tab</title>
<link href='./assets/css/light.css' rel='stylesheet'>
<link href='./assets/css/base.css' rel='stylesheet'>
<link href='./assets/css/animate.css' rel='stylesheet'>
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicons/favicon-16x16.png">
</head>
<body id="body">
<div id='greetingText' class='greeting animate'></div>
<time id='withSeconds' class='animate'></time>
<time id='withoutSeconds'class='animate'></time>
<div id='quoteText' class='quote animate'>
<blockquote></blockquote>
<cite></cite>
<button class='copyButton' onclick="copyQuote()" type='submit'><i class="material-icons">link</i></button>
</div>
<div id='updateModal' class='modal animate'>
<div class='modal-content'>
<span class='close'>&times;</span>
<span id='title' class='title'>UPDATE - SETTINGS + MORE</span>
<br>
<br>
<p class='subtitle'>BY TEAM MUE • 05/07/2019</p>
<img src="assets/img/updatenewlogo.png">
<p class='subtitle'>New Mue Logo</p>
<br>
<br>
<h2>First Major Update! (Settings, search and more)</h2>
<p><b>The Mue feature update is finally here</b> - in this update we have added a lot of features such as settings, search bar, and customization, the latter of which was requested by many users. <br> In the settings, you can now disable or enable features such as the seconds appearing or the custom quotes. To do this just go to the top right of the page and there's a settings icon when you click that will be a popup modal which you can view the settings on. <br> Below is a screenshot of the settings!</p>
<img src="assets/img/muesettings.png">
<p class='subtitle'>Picture of settings</p>
<br>
<br>
<p>The next new feature is the search bar; like the name suggests, you can search things using the search bar; currently there is only duckduckgo but soon we'll be adding inferior search engines such as Google, Bing, Yahoo and even Ask Jeeves which no one uses in 2019. <br>Another new feature, now using our brand new API which is on the new <a href="https://muetab.xyz">website</a> at muetab.xyz is the renewed random quotes - you can now get a random quote from the API where if you have an internet connection you will be able to see around the quote every time you refresh the page and will be updated on the clouds even if you never update extension which you should by the way you still get all the brand new quotes.</p>
</div>
</div>
<div id='settingsModal' class='modal animate'>
<div class='modal-content'>
<span class='close2'>&times;</span>
<span class='settingsTitle'>SETTINGS</span>
<br>
<br>
<li class='items'>
<p class='switch'>Theme Switch</p>
<label class='switch'>
<input id='check' type='checkbox' onclick='window.changeTheme()'>
<span class='slider round'></span>
</label>
</li>
<li class='items'>
<p class='switch'>Hide Search Bar</p>
<label class='switch'>
<input id='searchBarCheck' type='checkbox' onclick='hideSearchBar()'>
<span class='slider round'></span>
</label>
</li>
<li class='items'>
<p class='switch'>Hide Quotes</p>
<label class='switch'>
<input id='quoteCheck' type='checkbox' onclick='hideQuotes()' >
<span class='slider round'></span>
</label>
</li>
<li class='items'>
<p class='switch'>Hide Greeting</p>
<label class='switch'>
<input id='greetingCheck' type='checkbox' onclick='hideGreeting()'>
<span class='slider round'></span>
</label>
</li>
<li class='items'>
<p class='switch'>Hide Seconds</p>
<label class='switch'>
<input id='secondsCheck' type='checkbox' onclick='hideSeconds()'>
<span class='slider round'></span>
</label>
</li>
<!--
<li class='items'>
<div class="sliderContainer">
<p class='switch'>Background Blur</p>
<input type='range' min='0' max='100' value='0' class="blurslider" id='slider'>
<p class='switch'><span id="blurValue"></span>×</p>
</div>
</li>
<li class='items'>
<p class='switch'>Search Engine</p>
<select class="dropdown" id ="searchdropdown">
<option value="volvo">DuckDuckGo</option>
<option value="saab">Google</option>
<option value="mercedes">Ask</option>
<option value="audi">Ecosia</option>
</select>
</li>
<li class='items'>
<p class='switch'>Font</p>
<select class="dropdown" id="font_dropdown">
<option value="opensans" onclick="setFontOP()">Open Sans</option>
<option value="roboto" onclick="setFontROB()">Roboto</option>
</select>
</li>
-->
</div>
</div>
<div class='buttons'>
<button class='settings' id='openSettingsModal'><i class='material-icons'>settings</i></button>
<button class='news' id='openUpdateModal' onclick="setFontROB()"><i class='material-icons'>new_releases</i></button>
</div>
<div id='searchBar' class='search-bar'>
<form id='searchBar' class="searchbarform" action='https://google.com' onsubmit='search()'>
<input type='text' placeholder='SEARCH' style='color: #000000;' name='q' id='searchText' class='searchText' />
<button class='searchbutton' type='submit'><i class='material-icons'>search</i></button>
</form>
</div>
</body>
<script>
function copyQuote() {
const quote = document.createRange();
quote.selectNode(document.getElementById('quoteText'));
window.getSelection().removeAllRanges();
window.getSelection().addRange(quote);
document.execCommand("copy");
window.getSelection().removeAllRanges();
}
</script>
<script src='./assets/js/base.js'></script>
</html>