Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxguist committed Apr 2, 2024
1 parent ef7d2f6 commit 31f874c
Show file tree
Hide file tree
Showing 22 changed files with 1,152 additions and 0 deletions.
479 changes: 479 additions & 0 deletions index.html

Large diffs are not rendered by default.

533 changes: 533 additions & 0 deletions script.js

Large diffs are not rendered by default.

Binary file added sounds/100.mp3
Binary file not shown.
Binary file added sounds/101.mp3
Binary file not shown.
Binary file added sounds/102.mp3
Binary file not shown.
Binary file added sounds/103.mp3
Binary file not shown.
Binary file added sounds/104.mp3
Binary file not shown.
Binary file added sounds/105.mp3
Binary file not shown.
Binary file added sounds/106.mp3
Binary file not shown.
Binary file added sounds/107.mp3
Binary file not shown.
Binary file added sounds/109.mp3
Binary file not shown.
Binary file added sounds/110.mp3
Binary file not shown.
Binary file added sounds/111.mp3
Binary file not shown.
Binary file added sounds/13.mp3
Binary file not shown.
Binary file added sounds/144.mp3
Binary file not shown.
Binary file added sounds/39.mp3
Binary file not shown.
Binary file added sounds/61.mp3
Binary file not shown.
Binary file added sounds/96.mp3
Binary file not shown.
Binary file added sounds/97.mp3
Binary file not shown.
Binary file added sounds/98.mp3
Binary file not shown.
Binary file added sounds/99.mp3
Binary file not shown.
140 changes: 140 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
body {
background-color: #121212;
color: white;
}

h1 {
margin-bottom: 20px;
text-align: center;
}

.btn {
box-shadow: 0px 5px 10px #222222;
font-size:18px;
}

.btn:focus {
outline: none;
}

.button-row div {
width: 60px;
height: 60px;
text-align: center;
line-height: 60px;
margin: 5px;
}

.button-row .btn {
width: 60px;
height: 60px;
background-color: #636363;
}

.button-row .btn:hover {
background-color: #858585;
color: white !important;
}

.button-orange {
background-color: #FF8400 !important;
}

.button-orange:hover {
background-color: #FFA647 !important;
}

.button-blue {
background-color: #0099FF !important;
}

.button-blue:hover {
background-color: #33ADFF !important;
}

.button-off {
background-color: #454545 !important;
}

.calc-history-eq {
color: #B0B0B0;
cursor: pointer;
}

#container {
width: 600px;
background-color: #2E2E2E;
height: 100%;
border-radius: 10px;
margin-top: 8%;
}

#expression {
height: 60px;
margin-bottom: 20px;
padding: 10px;
text-align: right;
background-color: #636363;
border-radius: 5px;
font-size: 30px;
box-shadow: 0px 5px 10px #444444 inset;
}

#standard-buttons {
display: inline-block;
margin-left: -20px;
margin-bottom: 10px;
}

#advanced-buttons {
display: inline-block;
display: none;
margin-left: -20px;
}

#toggle-advanced:hover {
background-color: #858585 !important;
}

#toggle-advanced span {
pointer-events: none;
}

#calc-history {
float: right;
width: 200px;
height: 270px;
background-color: #636363;
border-radius: 5px;
margin-top: 6px;
padding: 10px;
box-shadow: 0px 5px 10px #444444 inset;
overflow:auto;
font-size:18px;
}

#calc-history-box {
width: 180px !important;
height: 220px !important;
resize: none;
overflow: auto;
font-size:18px;
}

#calc-history hr {
margin-top: 5px;
margin-bottom: 5px;
}

#footer {
background-color: #262626;
margin-left: -15px;
margin-right: -15px;
margin-bottom: -15px;
margin-top: 15px;
padding: 10px;
padding-bottom: 1px;
color: #636363;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

0 comments on commit 31f874c

Please sign in to comment.