Plugin Directory

Changeset 2134321


Ignore:
Timestamp:
08/05/2019 02:05:29 PM (7 years ago)
Author:
mehtashail
Message:

CSS & Form File Updated

Location:
maths-calculator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • maths-calculator/trunk/style.css

    r2134319 r2134321  
    1818    padding: 1%
    1919}
    20 
     20#operations {
     21    background: #ff9933;
     22    width: 15%;
     23    font-size: 20px;
     24    font-weight: 900;
     25    border-radius: 7px;
     26    margin-left: 13px;
     27    margin-top: 10px;
     28    color: #fff;
     29    font-weight: normal !important;
     30    padding: 1%
     31}
    2132#wm-calculator {
    2233    position: relative;
  • maths-calculator/trunk/wm-calculator.php

    r2134313 r2134321  
    1818            <input id="operations-actions" type="button" value=" - " onclick="calculator.answer.value += '-'"/>
    1919            <input id="operations-actions" type="button" value="." onclick="calculator.answer.value += '.'"/>
    20             <input type="button" name="inputtangent" value=" tan " onclick='tan()'/>
     20            <input id="operations" type="button" name="inputtangent" value=" tan " onclick='tan()'/>
    2121            </br>
    2222            <input id="number-button" type="button" value=" 3 " onclick="calculator.answer.value += '3'"/>
     
    2525            <input id="operations-actions" type="button" value=" x " onclick="calculator.answer.value += '*'"/>
    2626            <input id="operations-actions" type="button" name="inputsqrt" value="&#8730;" onclick='sqrt()'>
    27             <input type="button" name="inputsquare" value=" square " onclick='power()'/>
     27            <input id="operations" type="button" name="inputsquare" value=" square " onclick='power()'/>
    2828            </br>
    2929
    30             <input type="button" name="inputround" value=" round " onclick='round()'/>
     30            <input id="operations" type="button" name="inputround" value=" round " onclick='round()'/>
    3131            <input id="number-button" type="button" value=" 0 " onclick="calculator.answer.value += '0'"/>
    3232            <input id="button-red" type="button" value=" = "
     
    3434            <input id="operations-actions" type="button" value=" / " onclick="calculator.answer.value += '/'"/>
    3535            <input id="operations-actions" type="button" name="inputsine" value=" sin " onclick='sin()'/>
    36             <input type="button" name="inputcosine" value=" cos " onclick='cos()'/>
     36            <input id="operations" type="button" name="inputcosine" value=" cos " onclick='cos()'/>
    3737
    3838            </br>
Note: See TracChangeset for help on using the changeset viewer.