diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..8a557a8 --- /dev/null +++ b/css/style.css @@ -0,0 +1,293 @@ +@font-face { + font-family: digital; + src: url('/imgs/digital.ttf'); +} + +body { + position: fixed; + background-image: url("/imgs/calculator.jpg"); + background-repeat: no-repeat; +} + +#display { + position: fixed; + height: 85px; + width: 295px; + left: 455px; + top: 156px; + border-radius: 5px; + font-size: 50px; + font-family: "digital"; + word-wrap: break-word; + text-shadow: 4px 4px #4D834D; + overflow-wrap: break-word; + overflow-y: hidden; + line-height: 40px; +} + +#seven { + position: fixed; + height: 42px; + width: 60px; + left: 420px; + top: 320px; + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#eight { + position: fixed; + height: 42px; + width: 60px; + left: 488px; + top: 320px; + transform: skew(2deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#nine { + position: fixed; + height: 42px; + width: 60px; + left: 556px; + top: 320px; + transform: skew(3deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#four { + position: fixed; + height: 42px; + width: 62px; + left: 420px; + top: 368px; + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#five { + position: fixed; + height: 42px; + width: 62px; + left: 490px; + top: 367px; + transform: skew(1.5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#six { + position: fixed; + height: 42px; + width: 62px; + left: 558px; + top: 367px; + transform: skew(3deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#one { + position: fixed; + height: 42px; + width: 62px; + left: 420px; + top: 415px; + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#two { + position: fixed; + height: 42px; + width: 62px; + left: 491px; + top: 415px; + transform: skew(1.5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#three { + position: fixed; + height: 42px; + width: 62px; + left: 562px; + top: 414px; + transform: skew(3deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#zero { + position: fixed; + height: 44px; + width: 64px; + left: 420px; + top: 464px; + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#zeroZero { + position: fixed; + height: 44px; + width: 63px; + left: 493px; + top: 463px; + transform: skew(1deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#deci { + position: fixed; + height: 43px; + width: 64px; + left: 564px; + top: 462px; + transform: skew(3deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; +} + +#divide { + position: fixed; + height: 39px; + width: 60px; + left: 645px; + top: 321px; + transform: skew(5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #F0DD0A; +} + +#multiply { + position: fixed; + height: 42px; + width: 61px; + left: 649px; + top: 365px; + transform: skew(5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #F0DD0A; +} + +#minus { + position: fixed; + height: 42px; + width: 62px; + left: 653px; + top: 412px; + transform: skew(5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #F0DD0A; +} + +#plus { + position: fixed; + height: 42px; + width: 65px; + left: 657px; + top: 461px; + transform: skew(5deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #F0DD0A; +} + +#equal { + position: fixed; + height: 88px; + width: 61px; + left: 735px; + top: 318px; + transform: skew(9deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #E31E1E; +} + +#clear { + position: fixed; + height: 42px; + width: 63px; + left: 744px; + top: 412px; + transform: skew(9deg); + font-size: 30px; + font-weight: bold; + border-radius: 5px; + background-color: #E31E1E; +} + +#balance { + position: fixed; + height: 43px; + width: 65px; + left: 750px; + top: 460px; + transform: skew(9deg); + font-size: 22px; + font-weight: bold; + border-radius: 5px; + background-color: #39AD36; +} + +#deposit{ + position: fixed; + height: 90px; + width: 195px; + left: 205px; + top: 340px; + transform: skew(-2deg); + font-size: 22px; + font-weight: bold; + border-radius: 5px; + background-color: #39AD36; +} + +#withdraw{ + position: fixed; + height: 92px; + width: 195px; + left: 200px; + top: 431px; + transform: skew(-2.5deg); + font-size: 22px; + font-weight: bold; + border-radius: 5px; + background-color: #39AD36; +} + +#fck { + position: fixed; + height: 4px; + width: 500px; + left: 695px; + top: 545px; + font-size: 10px; + font-family: arial; +} \ No newline at end of file diff --git a/imgs/calculator.jpg b/imgs/calculator.jpg new file mode 100644 index 0000000..d0e4941 Binary files /dev/null and b/imgs/calculator.jpg differ diff --git a/imgs/digital.ttf b/imgs/digital.ttf new file mode 100644 index 0000000..5dbe6f9 Binary files /dev/null and b/imgs/digital.ttf differ diff --git a/imgs/showmethemoney.wav b/imgs/showmethemoney.wav new file mode 100644 index 0000000..64426b9 Binary files /dev/null and b/imgs/showmethemoney.wav differ diff --git a/index.html b/index.html index e69de29..b6b2eb1 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,47 @@ + + +
+ + +