-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
12,233 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,50 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>LoFi Square</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<img src="./logo.png" alt="Logo" class="logo"> | ||
<div class="controls"> | ||
<i id="prev" class="fas fa-backward control-icon"></i> | ||
<i id="play" class="fas fa-play control-icon"></i> | ||
<i id="next" class="fas fa-forward control-icon"></i> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>LoFi Square</title> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" | ||
/> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<img src="./logo.png" alt="Logo" class="logo" /> | ||
<div class="controls"> | ||
<i id="prev" class="fas fa-backward control-icon"></i> | ||
<i id="play" class="fas fa-play control-icon"></i> | ||
<i id="next" class="fas fa-forward control-icon"></i> | ||
</div> | ||
<div class="current-track"> | ||
<span id="track-name"></span> | ||
</div> | ||
</div> | ||
<div class="current-track"> | ||
<span id="track-name"></span> | ||
|
||
<div class="category-selector"> | ||
<select id="category-select"> | ||
<option value="Ambientes">Ambientes</option> | ||
<option value="Jazz">Jazz</option> | ||
<option value="Eletronica">Eletronica</option> | ||
</select> | ||
</div> | ||
|
||
<div class="volume-controls"> | ||
<i id="volume-down" class="fas fa-minus volume-icon"></i> | ||
<input | ||
type="range" | ||
id="volume" | ||
min="0" | ||
max="1" | ||
step="0.01" | ||
value="0.5" | ||
class="volume-slider" | ||
/> | ||
<i id="volume-up" class="fas fa-plus volume-icon"></i> | ||
</div> | ||
</div> | ||
|
||
<div class="category-selector"> | ||
<select id="category-select"> | ||
<option value="Ambientes">Ambientes</option> | ||
<option value="Jazz">Jazz</option> | ||
<option value="Eletronica">Eletronica</option> | ||
</select> | ||
</div> | ||
|
||
<div class="volume-controls"> | ||
<i id="volume-down" class="fas fa-minus volume-icon"></i> | ||
<input type="range" id="volume" min="0" max="1" step="0.01" value="0.5" class="volume-slider"> | ||
<i id="volume-up" class="fas fa-plus volume-icon"></i> | ||
</div> | ||
|
||
<script src="renderer.js"></script> | ||
</body> | ||
<script src="renderer.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.