Skip to content

Commit

Permalink
Coming soon
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel-de-Oliveira committed Apr 18, 2023
1 parent 917b7e7 commit ac9ba3c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 181 deletions.
38 changes: 3 additions & 35 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -1,43 +1,11 @@
* {
margin: 0;
}
@font-face {
font-family: Exo;
src: url(Exo-Regular.ttf);
} body {
background: #121212;
color: white;
font-family: Exo;
} nav {
background: #444444;
font-color: white;
padding: 3px;
font-size: 20px;
} a {
color: white;
} .top {
padding: 6px;
} h1 {
font-size: 34px;
color: #AFAFAF;
background: black;
padding-top: 18px;
padding-bottom: 10px;
padding-left: 0px;
padding-right: 0px;
} h2 {
font-size: 28px;
color: #AFAFAF;
} footer {
padding: 10px;
background: #444444;
} p {
font-size: 22px;
text-align: justify;
line-height: 26px;
} li {
font-size: 18px;
} .divs {
display: grid;
grid-template-columns: auto auto auto;
} .bgblack {
background: black;
padding: 8px;
}
61 changes: 0 additions & 61 deletions download.html

This file was deleted.

69 changes: 5 additions & 64 deletions index.html
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,71 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CanUseTimer</title>
<link rel="icon" href="css/CanUseTimerLogo.ico">
<style>
@import url(css/index.css);
</style>
<title>Document</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header>
<img src="https://raw.githubusercontent.com/Samuel-de-Oliveira/CanUseTimer/main/Images/CanUseTimerLogo.png" align="left"><h1 align="left">CanUseTimer</h1><br>
<nav>
<strong>
<a class="top" id="home" href="index" style="background: #333333;" onmouseenter="animation('home')" onmouseout="exitMain('home')">Home</a>
<a id="download" href="download" onmouseenter="animation('download')" onmouseout="exitOuther('download')">Download</a>
</strong>
</nav>
</header>
<h2>The lightweight software for SpeedCubing</h2>
<p>The CanUseTimer is a Opensource SpeedCubing timer. But this one is<br>
only a terminal interface program, who made it more lightweight and<br>
softest than outhers Speedcubing timers, totaly created for who only<br>
want simplicity or have a computer with a bad hardware (It's perfect<br>
for i3 window manager users). This program work too in every platform<br>
(Windows, Linux, MacOS) and the source is open for study or upgrades</p>

<hr>
<div class="divs">
<div class="bgblack"><h2>Why use?</h2>
<ul>
<li>Lightweight program;</li>
<li>Run all platforms (Windows, Linux, MacOS X);</li>
<li>Don't need internet (but you can't update it);</li>
<li>It follow the WCA <a href="https://www.worldcubeassociation.org/regulations/" onmouseenter="enterBox('box1')">regulations</a>;</li>
<li>Open source (Read the GPLv3 license for more info).</li>
</ul></div>

<div class="bgblack"><h2>Get started!</h2>
<h3><strong>It's dangerous to go alone! take this:</strong></h3>
<ul>
<li>Download the program <a href="download">Here.</a></li>
<li>See the <a href="https://github.com/Samuel-de-Oliveira/CanUseTimer/wiki" onmouseenter="enterBox('box2')">Wiki.</a></li>
</ul></div>

<div class="bgblack"><h2>Realease Notes (Version 0.2.1)</h2>
<ul>
<li>Parameter --change-modality added (see the wiki);</li>
<li>Orthographic errors fixed;</li>
<li>New modality added (square-one);</li>
<li>Bug fixes.</li>
</ul></div>
</div>

<hr>
<h2>How can I contribute?</h2>
<p>If you want to help with something you can make a fork from the<br>
program and I will give credit for the help. To make forks you can<br>
enter in <a href="https://github.com/Samuel-de-Oliveira/CanUseTimer">Github</a> and create one. For ideias or bugs report you can<br>
create an issues from the <a href="https://github.com/Samuel-de-Oliveira/CanUseTimer">Github</a> too.</p>

<footer>
<h2>See the project's source:</h2>
<p>See the program's repository in <a href="https://github.com/Samuel-de-Oliveira/CanUseTimer">Github</a>.<br>
See the site's repository <a href="https://github.com/Samuel-de-Oliveira/canusetimer.github.io">here</a>.</p>
<p>Program created by: <a href="https://github.com/Samuel-de-Oliveira">Samuel de Oliveira</a> 2021 - 2022.</p>
</footer>
<script src="js/main.js"></script>
<h1>Coming soon...</h1>
</body>
<script src="main.js"></script>
</html>
22 changes: 1 addition & 21 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,21 +1 @@
// This code is for only animation for program \\
function animation(id) {
var main = window.document.getElementById(id)
main.style = 'padding: 6px; background: white; color: black;'
}
function exitMain(id) {
var main = window.document.getElementById(id)
main.style = 'padding: 6px; background: #333333; color: white;'
}
function exitOuther(id) {
var main = window.document.getElementById(id)
main.style = 'padding: 3px; background: #444444; color: white;'
}
function enterBox(id) {
var main = window.document.getElementById(id)
main.style = 'background: #333333;'
}
function exitBox(id) {
var main = window.document.getElementById(id)
main.style = 'background: black;'
}
// Nothing here :(

0 comments on commit ac9ba3c

Please sign in to comment.