-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (59 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
67 lines (59 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scoring App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <div class="title">The Judging App</div> -->
<div class="container">
<button class="newHeat">New Heat</button>
<div class="grid-container">
<div class="left-display">
<div class="displayNumb"></div>
<input type="number" placeholder="Enter your Score">
<button id="confirm">Confirm Score</button>
<div class="lycra">
<button class="red">Red</button>
<button class="white">White</button>
<button class="yellow">Yellow</button>
<button class="blue">Blue</button>
</div>
</div>
<div class="right-display">
<div class="displayTotal">
<div class="wavesTitle">Waves</div>
<div class="grid-jersey">
<div class="redDis waves">
<div class="colorDisplay">Red</div>
<!-- Total score has to stay below the scores that will be entered and have to calculate the 2 highest waves count -->
<!-- <div class="waveScore">Total Score: <br><span class="score">5</span></div> -->
</div>
<div class="whiteDis waves">
<div class="colorDisplay">White</div>
</div>
<div class="yellowDis waves">
<div class="colorDisplay">Yellow</div>
<!-- <div class="waveScore">#1 Score: <br><span class="score">7</span></div> -->
</div>
<div class="blueDis waves">
<div class="colorDisplay">Blue</div>
<!-- <div class="waveScore">#1 Score: <br><span class="score">5.5</span></div> -->
</div>
</div>
</div>
</div>
<div class="listwaves">accesso ao segundo row</div>
</div>
<!-- <div>xxxssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss</div> -->
</div>
<!-- <div class="grid-container">
<div class="grid-item">1</div>
<div class="grid-item left-panel">2</div>
<div class="grid-item">3</div>
</div> -->
<script src="script.js"></script>
</body>
</html>