Skip to content

Commit

Permalink
Create cal.css
Browse files Browse the repository at this point in the history
  • Loading branch information
nadheems authored Mar 23, 2024
1 parent f5c7683 commit 1a641ff
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions cal.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
</style>
</head>
<body>

<div class="calculator">
<input class="display" type="text" disabled>
<div class="button-row">
<button class="button">7</button>
<button class="button">8</button>
<button class="button">9</button>
<button class="button">+</button>
</div>
<div class="button-row">
<button class="button">4</button>
<button class="button">5</button>
<button class="button">6</button>
<button class="button">-</button>
</div>
<div class="button-row">
<button class="button">1</button>
<button class="button">2</button>
<button class="button">3</button>
<button class="button">*</button>
</div>
<div class="button-row">
<button class="button">C</button>
<button class="button">0</button>
<button class="button">=</button>
<button class="button">/</button>
</div>
</div>

</body>
</html>

0 comments on commit 1a641ff

Please sign in to comment.