-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (55 loc) · 2.59 KB
/
index.html
File metadata and controls
70 lines (55 loc) · 2.59 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
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cleverculus</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="wrapper">
<div class="calculator">
<button class="btn-history-toggle" id="history-btn">
<i class="fa-solid fa-clock-rotate-left"></i>
</button>
<div class="display-container">
<div class="previous-operand" id="previous-operand"></div>
<div class="current-operand" id="current-operand">0</div>
</div>
<div class="buttons-grid">
<button class="span-two btn-clear" data-action="clear">AC</button>
<button class="btn-delete" data-action="delete">DEL</button>
<button class="btn-op" data-operation="÷">÷</button>
<button data-number>7</button>
<button data-number>8</button>
<button data-number>9</button>
<button class="btn-op" data-operation="*">×</button>
<button data-number>4</button>
<button data-number>5</button>
<button data-number>6</button>
<button class="btn-op" data-operation="-">-</button>
<button data-number>1</button>
<button data-number>2</button>
<button data-number>3</button>
<button class="btn-op" data-operation="+">+</button>
<button data-number>.</button>
<button data-number>0</button>
<button class="span-two btn-equal" data-action="compute">=</button>
</div>
</div>
<div class="history-panel" id="history-panel">
<div class="history-header">
<h3>Log</h3>
<button class="btn-trash" id="clear-history"><i class="fa-solid fa-trash"></i></button>
</div>
<div class="history-list" id="history-list">
<p class="empty-msg">No history yet.</p>
</div>
</div>
</div>
<p class="footer-text">Designed & Coded by <a href="https://github.com/suhr25" target="_blank">Suhrid</a></p>
<script src="script.js"></script>
</body>
</html>