-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (88 loc) · 3.3 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculadora</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="app">
<header>
<div class="hd-title">Calculadora</div>
<div class="top-menu">
<div class="hd-mini">__</div>
<div class="hd-full">[ ]</div>
<div class="hd-close">X</div>
</div>
</header>
<section class="tool">
<div class="t-menu">
<hr>
<hr>
<hr>
</div>
<span class="t-mode">Padrão</span>
<div class="t-compact">M</div>
<div class="t-history">H</div>
</section>
<div class="display">
<span class="info-display"></span>
<p class="output">0</p>
</div>
<section class="memory">
<li>MC</li>
<li>MR</li>
<li>M+</li>
<li>M-</li>
<li>MS</li>
<li>M</li>
</section>
<div class="btns">
<ul class="btn-extra">
<li>%</li>
<li>CE</li>
<li>C</li>
<li>¹/x</li>
<li>x²</li>
<li>²¬</li>
</ul>
<ul class="btn-number">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>+/-</li>
<li>0</li>
<li>,</li>
</ul>
<ul class="btn-options">
<li><svg style="enable-background:new 0 0 36 36;" version="1.1" viewBox="0 0 36 36" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">
.st0{fill: white;}
.st1{fill:none;stroke:white;stroke-width:2.0101;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill: white;}
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:white;}
</style><g id="Layer_1"/><g id="icons"><g id="backspace_2_"><path d="M26.2,23.1l-0.7,0.7c-0.3,0.3-0.8,0.3-1.1,0l-4-4l-4,4c-0.3,0.3-0.8,0.3-1.1,0l-0.7-0.7c-0.3-0.3-0.3-0.8,0-1.1l4-4l-4-4 c-0.3-0.3-0.3-0.8,0-1.1l0.7-0.7c0.3-0.3,0.8-0.3,1.1,0l4,4l4-4c0.3-0.3,0.8-0.3,1.1,0l0.7,0.7c0.3,0.3,0.3,0.8,0,1.1l-4,4l4,4 C26.5,22.3,26.5,22.8,26.2,23.1z"/><path class="st1" d="M30.5,6.7H11.6c-0.9,0-1.5,0.4-2,1.1l-6.5,9.8c-0.2,0.3-0.2,0.6,0,0.8l6.5,9.8c0.5,0.6,1.1,1.1,2,1.1h18.8 c1.4,0,2.5-1.1,2.5-2.5V9.2C33,7.8,31.9,6.7,30.5,6.7z"/></g></g></svg></li>
<li>÷</li>
<li>x</li>
<li>-</li>
<li>+</li>
<li>=</li>
</ul>
</div>
<section class="history">
<ul class="h-list">
<span>Ainda não há histórico</span>
</ul>
<div class="h-clean">Limpar</div>
</section>
</div>
<script src="/app.js"></script>
</body>
</html>